diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2023-03-04 11:05:54 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2023-03-04 11:05:54 -0800 |
| commit | 572f3259a914a5bf8b86b355b9612c1ab076ff5d (patch) | |
| tree | 58db9c6356686f3f3574fb090549277dbaa05347 /.github/workflows/ci.yml | |
| parent | 8701da67bee6b12dcf1641bbd9db81f4f36d4fe8 (diff) | |
Another attempt to fix windows CI caching.
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1a1276d1..e0a3a65f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,11 +162,6 @@ jobs: steps: - uses: actions/checkout@v3 - # x=$x exports the envvar to GitHub Actions' scope. - - name: Set up environment variables - run: | - echo "APPDATA=$APPDATA" >> $GITHUB_ENV - # declare/restore cached things - name: Cache cabal global package db @@ -174,8 +169,8 @@ jobs: uses: actions/cache@v3 with: path: | - ${{ env.APPDATA }}/cabal/store - key: ${{ runner.os }}-appdata-roaming-cabal-${{ hashFiles('cabal.project') }}-${{ secrets.CACHE_VERSION }} + %AppData%/cabal/store + key: ${{ runner.os }}-appdata-cabal-${{ hashFiles('cabal.project') }}-${{ secrets.CACHE_VERSION }} - name: Cache cabal work id: cabal-local |
