From c31c0f966957992dbd8d24257e4998a8abd012ac Mon Sep 17 00:00:00 2001 From: Bryan Richter Date: Thu, 12 Feb 2026 22:01:23 +0200 Subject: [PATCH] Reconfigure caching Caching .stack-work seems sketchy -- I'd rather have a full build of the local project each time. ~/.ghcup, on the other hand, is the toolchain and seems like a good cache candidate. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6c37e96..2e5f5c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,8 +13,8 @@ jobs: - uses: actions/cache@v4 with: path: | + ~/.ghcup ~/.stack - .stack-work key: ${{ runner.os }}-${{ hashFiles('**/*.cabal','**/stack.yaml') }} # If there's no match for key, fall back to these: restore-keys: |