[CI, Test] fix cache key

This commit is contained in:
dpeter99 2022-06-10 14:19:27 +02:00
parent e162462091
commit 9d2cc9f830

View File

@ -32,7 +32,7 @@ jobs:
uses: actions/cache@v2
with:
path: "/bin/Debug"
key: ${{ runner.os }}-$GITHUB_RUN_ID
key: ${{ runner.os }}-${{ github.run_id }}
- name: Upload shadow-engine artifact
uses: actions/upload-artifact@v3
@ -48,7 +48,7 @@ jobs:
uses: actions/cache@v2
with:
path: "/bin/Debug"
key: ${{ runner.os }}-$GITHUB_RUN_ID
key: ${{ runner.os }}-${{ github.run_id }}
- name: Test shadow-file-format
run: ./bin/Debug/shadow-file-format-test/shadow-file-format-test.exe --gtest_output="xml:./test-results/shadow-file-format-test.xml"