Skip to content

Commit

Permalink
Fix build on main
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jul 19, 2024
1 parent 71cf2ff commit 676af7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
uses: docker/build-push-action@v5
with:
tags: ${{ steps.meta.outputs.tags }}
load: ${{ github.event.pull_request.head.repo.fork }}
push: ${{ ! github.event.pull_request.head.repo.fork }}
load: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork }}
push: ${{ ! (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }}
context: .
platforms: linux/amd64
cache-to: |
Expand Down

0 comments on commit 676af7b

Please sign in to comment.