modified action to use the correct file since I used it too early in the command (#755)

This commit is contained in:
kevkevin 2023-08-25 10:28:48 -05:00 committed by GitHub
parent f175795b50
commit e613d22b71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ jobs:
echo ${{ env.RELEASE_TAG }}
- name: Run Docker buildx
run: |
docker -f Dockerfile.swarm buildx build \
docker buildx build -f Dockerfile.swarm \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64/v8,linux/arm/v7 \
@ -56,7 +56,7 @@ jobs:
--output "type=registry" ./
- name: Run Docker buildx with latest tag
run: |
docker -f Dockerfile.swarm buildx build \
docker buildx build -f Dockerfile.swarm \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64/v8,linux/arm/v7 \