build cache fix (maybe)
All checks were successful
Build / Build - linux (push) Successful in 7m9s
Build / Build - windows (push) Successful in 4m51s

This commit is contained in:
2026-01-30 15:34:21 +01:00
parent b3cb95c7d3
commit 68f5e3660f

View File

@@ -41,6 +41,17 @@ jobs:
echo "SCCACHE_DIR=/tmp/sccache" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.target }}-cargo-
- name: Setup cross-compilation tools
if: matrix.setup_cmd != ''
run: ${{ matrix.setup_cmd }}