diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-24 11:43:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-24 15:25:23 +0300 |
commit | 02ac65574a6b9b97e6720dd81257ea1542930e58 (patch) | |
tree | 038ff636005c64f5aecea37ea5da24ac2b385a9a /.github/workflows/boost_clang_windows.yml | |
parent | actions/build-boost: no more --verbose, it's stable (diff) | |
download | cmake-common-02ac65574a6b9b97e6720dd81257ea1542930e58.tar.gz cmake-common-02ac65574a6b9b97e6720dd81257ea1542930e58.zip |
workflows: fix cache path
Forgot to switch to $RUNNER_WORKSPACE/build in the workflows also.
Also, the usual crap with the cache action made me change the cache
keys, or it would be restore in the wrong location for some reason.
Diffstat (limited to '.github/workflows/boost_clang_windows.yml')
-rw-r--r-- | .github/workflows/boost_clang_windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/boost_clang_windows.yml b/.github/workflows/boost_clang_windows.yml index 92e3ced..66fea9e 100644 --- a/.github/workflows/boost_clang_windows.yml +++ b/.github/workflows/boost_clang_windows.yml @@ -37,7 +37,7 @@ jobs: uses: actions/cache@v2.1.4 with: path: '${{ runner.workspace }}/boost/boost_*.tar.gz' - key: 'boost-${{ matrix.boost-version }}' + key: 'boost_${{ matrix.boost-version }}' - name: Clean up PATH uses: egor-tensin/cleanup-path@v2 |