Fix home env

This commit is contained in:
badaix 2023-01-22 13:14:24 +01:00
parent b3d46cc5ef
commit 93327d9a20

View file

@ -88,7 +88,7 @@ jobs:
id: cache-ccache
uses: actions/cache@v3
with:
path: ${{ env.$HOME }}/.ccache
path: ${{ env.HOME }}/.ccache
key: ${{ runner.os }}-${{ matrix.compiler }}-ccache-${{ github.sha }}
restore-keys: ${{ runner.os }}-${{ matrix.compiler }}-ccache-
#- name: ccache dump config
@ -106,7 +106,7 @@ jobs:
CXX: ${{ matrix.cxx }}
- name: build
env:
CCACHE_DIR: ${{ env.$HOME }}/.ccache
CCACHE_DIR: ${{ env.HOME }}/.ccache
run: cmake --build build --parallel 3 --verbose