Skip to content

Commit

Permalink
CI: Correct cache setup
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Nov 20, 2023
1 parent 7b01c0c commit ac2bd48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4

- name: Restore dependencies
id: cache-restore-${{matrix.mpi}}
id: cache-restore
uses: actions/cache/restore@v3
with:
path: /usr/local
Expand All @@ -41,11 +41,11 @@ jobs:
esac
- name: Save dependencies
id: cache-save-${{matrix.mpi}}
id: cache-save
uses: actions/cache/save@v3
with:
path: /usr/local
key: ${{steps.cache-restore-${{matrix.mpi}}.outputs.cache-primary-key}}
key: ${{steps.cache-restore.outputs.cache-primary-key}}

- name: Configure
run: |
Expand Down

0 comments on commit ac2bd48

Please sign in to comment.