From dd605f5445c60beccbb6773e49a29128bd09a233 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Sun, 18 Apr 2021 08:23:50 +0200 Subject: [PATCH] GHA : Avoid space in cache key --- .github/workflows/ResInsightWithCache.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ResInsightWithCache.yml b/.github/workflows/ResInsightWithCache.yml index c7832558ef..3dd753039f 100644 --- a/.github/workflows/ResInsightWithCache.yml +++ b/.github/workflows/ResInsightWithCache.yml @@ -111,7 +111,7 @@ jobs: uses: actions/cache@v2 with: path: ${{ env.BUILDCACHE_DIR }} - key: ${{ matrix.config.name }}-cache-v02-${{ steps.cache_timestamp_string.outputs.timestamp }} + key: ${{ matrix.config.os }}-${{ matrix.config.cc }}-cache-v02-${{ steps.cache_timestamp_string.outputs.timestamp }} - name: Create Folder for buildcache run: New-Item ${{ env.BUILDCACHE_DIR }} -ItemType "directory" -Force shell: pwsh