Skip to content

Commit

Permalink
Manually restore and save cache
Browse files Browse the repository at this point in the history
Will it save when the intermediate ste fails?
  • Loading branch information
klaftertief committed Nov 27, 2023
1 parent ea600b0 commit 08153e0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,17 @@ jobs:
with:
node-version: 18
cache: 'npm'
- uses: actions/cache@v3
- name: Restore cached Primes
id: cache-generated-elm-modules-restore
uses: actions/cache/restore@v3
with:
path: cache
key: ${{ runner.os }}-generated-elm-modules
- run: make install
- run: make clean setup build
- name: Save Primes
id: cache-generated-elm-modules-save
uses: actions/cache/save@v3
with:
path: cache
key: ${{ steps.cache-generated-elm-modules-restore.outputs.cache-primary-key }}

0 comments on commit 08153e0

Please sign in to comment.