GHA : Avoid space in cache key

This commit is contained in:
Magne Sjaastad 2021-04-18 08:23:50 +02:00
parent ecdb1334c3
commit dd605f5445

View File

@ -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