diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2020-02-26 16:50:12 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2020-02-26 16:50:12 +0100 |
commit | 97dfe1325ef1eb1eb50b33f331f9b90bbe6f436b (patch) | |
tree | e88d30ce0507dba1adbee1ca3b777ce90c919711 | |
parent | 93d34152f591b976a6bd61da0d0cdaac8bce1332 (diff) | |
download | hakyll-97dfe1325ef1eb1eb50b33f331f9b90bbe6f436b.tar.gz |
Tickle cache
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 57841cb..18a2b73 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: - uses: 'mstksg/setup-stack@v1' - uses: 'actions/cache@v1' with: - path: '$HOME/.stack' - key: "${{ runner.os }}-v2-stack-${{ hashFiles('stack.yaml.lock') }}" - restore-keys: '${{ runner.os }}-v2-stack' + path: '~/.stack' + key: "${{ runner.os }}-v3-stack-${{ hashFiles('stack.yaml.lock') }}" + restore-keys: '${{ runner.os }}-v3-stack' - run: 'stack build --test' |