Switch back to unique cache entries with full integ-test

This commit is contained in:
daz 2024-04-11 23:00:25 -06:00
parent 6e48e8e40c
commit 0261d93071
No known key found for this signature in database

View file

@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
runner-os: ${{ steps.determine-suite.outputs.suite == 'quick' && '["ubuntu-latest"]' || '["ubuntu-latest", "windows-latest", "macos-latest"]' }}
cache-key-prefix: '0' # ${{ steps.determine-suite.outputs.suite == 'quick' && '0' || github.run_number }}
cache-key-prefix: ${{ steps.determine-suite.outputs.suite == 'quick' && '0' || github.run_number }}
steps:
- name: Determine suite to run
id: determine-suite
@ -33,7 +33,7 @@ jobs:
# Run full suite for push trigger with "[bot] Update dist directory" commit message
if [ "${{ github.event.head_commit.message }}" == "[bot] Update dist directory" ]; then
echo "Push to main branch: suite=full"
echo "Bot commit to main branch: suite=full"
echo "suite=full" >> "$GITHUB_OUTPUT"
exit 0
fi