We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63eef97 commit 3324b2bCopy full SHA for 3324b2b
.github/workflows/container-build-test.yml
@@ -135,7 +135,7 @@ jobs:
135
uses: ./.github/actions/build-container
136
env:
137
# Disable registry cache for pull requests to avoid permission issues
138
- DISABLE_REGISTRY_CACHE: ${{ github.event_name == 'pull_request' && 'true' || 'false' }}
+ DISABLE_REGISTRY_CACHE: ${{ (github.event_name == 'pull_request' || startsWith(github.ref, 'refs/heads/pull-request/')) && 'true' || 'false' }}
139
with:
140
safe_ref_name: ${{ needs.prepare-environment.outputs.safe_ref_name }}
141
nvcr_container_repo: ${{ needs.prepare-environment.outputs.nvcr_container_repo }}
0 commit comments