Skip to content

Commit

Permalink
modified action to use the correct file since I used it too early in …
Browse files Browse the repository at this point in the history
…the command (#755)
  • Loading branch information
kevkevinpal authored Aug 25, 2023
1 parent f175795 commit e613d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-swarm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ 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 \
--tag "${{ secrets.DOCKER_HUB_USER }}/sphinx-relay-swarm:${{ env.RELEASE_TAG }}" \
--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 \
Expand Down

0 comments on commit e613d22

Please sign in to comment.