From b53c5d34effb0b898541d4e81ac52674cd5253e9 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Thu, 19 Feb 2026 18:29:48 +1100 Subject: [PATCH] disable cache --- .gitea/workflows/build.yml | 77 -------------------------------------- 1 file changed, 77 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 7a22d0c..700a971 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -88,28 +88,6 @@ jobs: with: node-version: '20' - - name: Cache npm dependencies - uses: actions/cache@v3 - with: - path: | - ~/.npm - node_modules - cinny/node_modules - key: npm-windows-${{ hashFiles('package-lock.json', 'cinny/package-lock.json') }} - restore-keys: | - npm-windows- - - - name: Cache Cargo - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - src-tauri/target - key: cargo-windows-${{ hashFiles('src-tauri/Cargo.lock') }} - restore-keys: | - cargo-windows- - - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -175,28 +153,6 @@ jobs: with: node-version: '20' - - name: Cache npm dependencies - uses: actions/cache@v3 - with: - path: | - ~/.npm - node_modules - cinny/node_modules - key: npm-linux-${{ hashFiles('package-lock.json', 'cinny/package-lock.json') }} - restore-keys: | - npm-linux- - - - name: Cache Cargo - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - src-tauri/target - key: cargo-linux-${{ hashFiles('src-tauri/Cargo.lock') }} - restore-keys: | - cargo-linux- - - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -276,39 +232,6 @@ jobs: with: node-version: '20' - - name: Cache npm dependencies - uses: actions/cache@v3 - with: - path: | - ~/.npm - node_modules - cinny/node_modules - key: npm-android-${{ hashFiles('package-lock.json', 'cinny/package-lock.json') }} - restore-keys: | - npm-android- - - - name: Cache Cargo - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - src-tauri/target - key: cargo-android-${{ hashFiles('src-tauri/Cargo.lock') }} - restore-keys: | - cargo-android- - - - name: Cache Gradle - uses: actions/cache@v3 - with: - path: | - ~/.gradle/caches - ~/.gradle/wrapper - src-tauri/gen/android/.gradle - key: gradle-${{ hashFiles('src-tauri/gen/android/**/*.gradle*', 'src-tauri/gen/android/gradle-wrapper.properties') }} - restore-keys: | - gradle- - - name: Setup Java uses: actions/setup-java@v4 with: