diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 61e8ebb..03d1c34 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -17,16 +17,16 @@ jobs: - name: Install Rust uses: https://github.com/dtolnay/rust-toolchain@stable - - name: Cache Rust dependencies - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo- + # - name: Cache Rust dependencies + # uses: actions/cache@v3 + # with: + # path: | + # ~/.cargo/registry + # ~/.cargo/git + # target + # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + # restore-keys: | + # ${{ runner.os }}-cargo- - name: Build for Linux run: cargo build --release