Skip to content

Commit

Permalink
Fix autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
kimbtech committed Nov 6, 2023
1 parent 1e04e0d commit 27bc620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Multi platform image build and push

- name: Build and push the latest Docker image
run: docker buildx build --platform "$PLATFORMS" . --file "Dockerfile" --tag "$IMAGE_OWNER/$IMAGE_NAME:latest" --push
run: docker buildx build --platform "$PLATFORMS" . --file "docker/Dockerfile" --tag "$IMAGE_OWNER/$IMAGE_NAME:latest" --push
if: ${{ (github.event_name == 'push') || (steps.check.outputs.needs-updating == 'true') }}

- name: Push more tags
Expand All @@ -60,6 +60,6 @@ jobs:
echo "Skipping $TAG";
else
echo "Tagging image as $TAG and pushing";
docker buildx build --platform "$PLATFORMS" . --file "Dockerfile" --tag "$IMAGE_OWNER/$IMAGE_NAME:$TAG" --push
docker buildx build --platform "$PLATFORMS" . --file "docker/Dockerfile" --tag "$IMAGE_OWNER/$IMAGE_NAME:$TAG" --push
fi;
done;

0 comments on commit 27bc620

Please sign in to comment.