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 189749c commit f580987Copy full SHA for f580987
.github/workflows/swift.yml
@@ -21,13 +21,14 @@ jobs:
21
- name: Get swift version
22
run: swift --version
23
- name: Cache Mint
24
- uses: actions/cache@v2
+ id: cache-mint
25
+ uses: actions/cache@v3
26
with:
- key: mint_deps
27
+ key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Mintfile') }}
28
path: ~/mint
29
- uses: actions/checkout@v2
30
- name: Install Dependencies (Mac only)
- if: ${{ matrix.os == 'macos-latest' }}
31
+ if: ${{ matrix.os == 'macos-latest' && steps.cache-npm.outputs.cache-hit != 'true' }}
32
env:
33
MINT_PATH: '~/mint'
34
run: |
0 commit comments