From e623a352d2a409831d1ef29ea8422757dfcf5352 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 17 Sep 2025 13:59:03 +0200 Subject: [PATCH] fix: windows cache is not caching correctly. --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5b10dca..c495ab2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,7 +36,8 @@ jobs: - name: get submodule hash id: get-hash - run: echo "HASH=$(git submodule | sha1sum)" >$GITHUB_OUTPUT + run: echo "HASH=$(git submodule | sha1sum | cut -d' ' -f1)" >$GITHUB_OUTPUT + shell: bash - uses: actions/cache@v4 id: cache-deps