Skip to content

Commit 548261b

Browse files
committed
fix
1 parent df76383 commit 548261b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/conda-python-build.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,15 +188,14 @@ jobs:
188188
id: cache-sccache
189189
uses: actions/cache@v5
190190
with:
191-
# Miniforge job container runs as root; ~/.sccache is /root/.sccache
192-
path: /root/.cache/sccache
191+
path: /github/home/.cache/sccache
193192
key: sccache-${{ matrix.ARCH }}-${{ matrix.PY_VER }}
194193
- name: Check sccache
195194
if: steps.cache-sccache.outputs.cache-hit == 'true'
196195
run: |
197196
set -x
198-
ls -lh "${HOME}/.cache/sccache"
199-
du -sh "${HOME}/.cache/sccache"
197+
ls -lh /github/home/.cache/sccache
198+
du -sh /github/home/.cache/sccache
200199
- name: Build Conda Package
201200
run: ${{ inputs.script }}
202201
env:

0 commit comments

Comments
 (0)