Skip to content

Commit c185493

Browse files
committed
Try changing $GITHUB_WORKSPACE to ${{ github.workspace }}
1 parent be42344 commit c185493

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
- name: CCache
2929
uses: actions/cache@v4
3030
with:
31-
path: $GITHUB_WORKSPACE/.ccache
31+
path: ${{ github.workspace }}/.ccache
3232
key: ${{ matrix.platform }}
3333
- name: Build artifact
3434
run: |
3535
make ${{ matrix.platform }}
3636
env:
37-
CCACHE_DIR: $GITHUB_WORKSPACE/.ccache
37+
CCACHE_DIR: ${{ github.workspace }}/.ccache
3838
CMAKE_CXX_COMPILER_LAUNCHER: ccache
3939
- name: Upload artifact
4040
uses: actions/upload-artifact@v4
@@ -60,13 +60,13 @@ jobs:
6060
- name: CCache
6161
uses: actions/cache@v4
6262
with:
63-
path: $GITHUB_WORKSPACE/.ccache
63+
path: ${{ github.workspace }}/.ccache
6464
key: ${{ matrix.platform }}
6565
- name: Build artifact
6666
run: |
6767
make ${{ matrix.platform }}
6868
env:
69-
CCACHE_DIR: $GITHUB_WORKSPACE/.ccache
69+
CCACHE_DIR: ${{ github.workspace }}/.ccache
7070
CMAKE_CXX_COMPILER_LAUNCHER: ccache
7171
- name: Upload artifact
7272
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)