Skip to content

Commit

Permalink
TO-DROP: do not cache the SDK subset
Browse files Browse the repository at this point in the history
... until I get the subset of files right...

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Jun 10, 2024
1 parent 65f75a5 commit dcd7342
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/init-g4w-sdk-for-pacman/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ runs:
echo "rev=$rev" >>$GITHUB_OUTPUT &&
echo "cache-key=g4w-sdk-$rev${{ inputs.include-makepkg != 'false' && '+makepkg' || '' }}" >>$GITHUB_OUTPUT
- name: restore cached git-sdk-64 subset
if: false
id: restore-g4w-sdk
uses: actions/cache/restore@v4
env:
Expand Down Expand Up @@ -93,7 +94,8 @@ runs:
printf '#!/bin/sh\n\nexec /mingw64/bin/git.exe "$@"' >usr/bin/git
}
- name: cache git-sdk-64 subset
if: ${{ steps.restore-g4w-sdk.outputs.cache-hit != 'true' }}
if: false
# if: ${{ steps.restore-g4w-sdk.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v4
env:
cache-name: cache-g4w-sdk
Expand Down

0 comments on commit dcd7342

Please sign in to comment.