Skip to content

Commit

Permalink
Fix load and push error
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbown committed Oct 17, 2024
1 parent 0f8e611 commit 13e7a9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/postman-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
echo COMMIT_TAG=${{ env.COMMIT_TAG }} >> $GITHUB_ENV
- name: Build postman image for testing
uses: docker/build-push-action@v6
if: ${{ github.event_name == 'pull_request' }}
if: ${{ env.PUSH_IMAGE == 'false' && github.event_name == 'pull_request' }}
with:
context: ./
file: ./sdk/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prover-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
corset=corset/
constraints=constraints/
platforms: linux/amd64
load: true
load: ${{ env.PUSH_IMAGE == 'false' }}
push: ${{ env.PUSH_IMAGE }}
tags: ${{ env.TAGS }}
cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
Expand Down

0 comments on commit 13e7a9a

Please sign in to comment.