Skip to content

Commit

Permalink
Merge pull request #4158 from rouault/fix_4156
Browse files Browse the repository at this point in the history
docker.yml: re-instate pushing Docker 'proj' image for non-master builds
  • Loading branch information
rouault authored Jun 3, 2024
2 parents 929f946 + 5083bad commit 64bef2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
- container: "proj-docs"
dockerfile: "./Dockerfile"
env:
PUSH_PACKAGES: ${{ github.repository_owner == 'OSGeo' && github.ref_name == 'master' && github.event_name == 'push' }}
# Only push proj-docs package for master
PUSH_PACKAGES: ${{ github.repository_owner == 'OSGeo' && github.event_name != 'pull_request' && (matrix.container == 'proj' || (matrix.container == 'proj-docs' && github.ref_name == 'master')) }}
CONTAINER: ${{ matrix.container }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 64bef2b

Please sign in to comment.