diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-04-18 21:02:06 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-04-18 21:02:06 -0700 |
commit | b77dfe5fcdae8f27005418c53c7f6d0f63dc782a (patch) | |
tree | 78ff2c1d2ff8b6b88f18251371d87f7d50c6dfcc | |
parent | 573214a06a7e962ce8d37b70f7934f509a6f3b75 (diff) | |
download | pandoc-b77dfe5fcdae8f27005418c53c7f6d0f63dc782a.tar.gz |
CI: Don't cache .stack-work.
-rw-r--r-- | .github/workflows/ci.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f42e1574f..3db223537 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,12 +117,12 @@ jobs: restore-keys: ${{ runner.os }}-appdata-roaming-stack # stack's local package dbs for the project and each package - - name: Cache .stack-work - uses: actions/cache@v1 - with: - path: .stack-work - key: ${{ runner.os }}-stack-work-${{ hashFiles('**.yaml') }} - restore-keys: ${{ runner.os }}-stack-work + # - name: Cache .stack-work + # uses: actions/cache@v1 + # with: + # path: .stack-work + # key: ${{ runner.os }}-stack-work-${{ hashFiles('**.yaml') }} + # restore-keys: ${{ runner.os }}-stack-work - name: Install dependencies run: | @@ -158,11 +158,11 @@ jobs: ${{ runner.os }}-stack # stack's local package db - - name: Cache .stack-work - uses: actions/cache@v1 - with: - path: .stack-work - key: ${{ runner.os }}-stack-work + # - name: Cache .stack-work + # uses: actions/cache@v1 + # with: + # path: .stack-work + # key: ${{ runner.os }}-stack-work - name: Install dependencies run: | |