Skip to content

Commit

Permalink
Issue #3448: 'file' must be specified in docker/build-push-action@v6
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Jul 24, 2024
1 parent e4f9bde commit 468aa55
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker_image_update_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ jobs:
# TODO: early exit when nothing has to be done
-
name: Set up Docker Buildx
if: steps.check.outputs.needs-updating == 'true'
uses: docker/setup-buildx-action@v3
with:
file: otobo.web.dockerfile

-
# build the image, not pushing yet, no pushing as DockerHub access is not set up yet
Expand All @@ -46,10 +45,12 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
file: otobo.web.dockerfile
load: true
tags: ${{ env.TEST_TAG }}

- name: Test
if: steps.check.outputs.needs-updating == 'true'
run: |
docker run --rm ${{ env.TEST_TAG }} cat RELEASE
Expand Down

0 comments on commit 468aa55

Please sign in to comment.