Skip to content

Commit

Permalink
bleh
Browse files Browse the repository at this point in the history
  • Loading branch information
sklarsa committed Sep 9, 2024
1 parent 75a01b3 commit 9eb564b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
else
echo version=skip >> $GITHUB_OUTPUT
- name: Set up QEMU
if: steps.id.check-for-update.output.version != "skip"
if: ${{ steps.id.check-for-update.output.version != "skip"}}
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
if: steps.id.check-for-update.output.version != "skip"
if: ${{ steps.id.check-for-update.output.version != "skip"}}
uses: docker/setup-buildx-action@v3
#- name: Login to Docker Hub
# if: steps.id.check-for-update.output.version != "skip"
# if: ${{ steps.id.check-for-update.output.version != "skip"}}
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
#- name: Build and push
# if: steps.id.check-for-update.output.version != "skip"
# if: ${{ steps.id.check-for-update.output.version != "skip"}}
# uses: docker/build-push-action@v6
# with:
# push: true
Expand Down

0 comments on commit 9eb564b

Please sign in to comment.