From f9d268b3e52f0a8d8d3939e1b3cbd0ab62cad17d Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 31 Jan 2026 18:55:08 -0500 Subject: [PATCH] different caching mechanism --- .gitea/workflows/ci.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 13278f4..8433194 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -12,19 +12,9 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - - name: Cache Cargo Dependencies - uses: actions/cache@v4 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo- - name: Build + export CARGO_TARGET_DIR=/home/jeremy/cache/site_target run: cargo build --release - name: Move to opt