Changed cache id to match site builder name.
This commit is contained in:
parent
b100c017c6
commit
70c9a61de9
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -82,14 +82,14 @@ jobs:
|
||||||
|
|
||||||
- name: Cache Site Builder
|
- name: Cache Site Builder
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
id: cache-builder
|
id: cache-site-builder
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
$GITHUB_WORKSPACE/.stack-work
|
$GITHUB_WORKSPACE/.stack-work
|
||||||
key: ${{ matrix.os }}-ghc-${{ matrix.ghc }}-agda-${{ matrix.agda }}
|
key: ${{ matrix.os }}-ghc-${{ matrix.ghc }}-agda-${{ matrix.agda }}
|
||||||
|
|
||||||
- name: Build Site Builder
|
- name: Build Site Builder
|
||||||
if: steps.cache-builder.outputs.cache-hit != 'true'
|
if: steps.cache-site-builder.outputs.cache-hit != 'true'
|
||||||
run: make build-deps
|
run: make build-deps
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue