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 0e8e6f0 commit 819e717Copy full SHA for 819e717
.github/workflows/build-toolchain.yml
@@ -206,7 +206,8 @@ jobs:
206
Write-Host "github.ref='${{ github.ref }}'" -ForegroundColor Cyan
207
208
- name: Save vcpkg binary cache
209
- if: ${{ always() && startsWith(inputs.preset, 'win32') && steps.vcpkg_cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main' }}
+ # TODO: Add back && github.ref == 'refs/heads/main' after testing to prevent PR cache races
210
+ if: ${{ always() && startsWith(inputs.preset, 'win32') && steps.vcpkg_cache.outputs.cache-hit != 'true' }}
211
uses: actions/cache/save@v4
212
with:
213
path: ${{ github.workspace }}\vcpkg-bincache
0 commit comments