diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa32e9a..fb82c08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -89,15 +89,10 @@ jobs: - name: Install Rust stable uses: dtolnay/rust-toolchain@stable - - name: Cache Tauri CLI - id: cache-tauri-cli - uses: actions/cache@v4 + - name: Rust cache + uses: Swatinem/rust-cache@v2 with: - path: | - ~/.cargo/bin/cargo-tauri* - ~/.cargo/registry - ~/.cargo/git - key: ${{ runner.os }}-${{ matrix.target }}-cargo-tauri-v2-${{ hashFiles('src-tauri/Cargo.lock') }} + workspaces: './src-tauri -> target' - name: Install Tauri CLI (cargo plugin) shell: bash diff --git a/scripts/download_icebug.sh b/scripts/download_icebug.sh index 2426aa3..4629c51 100755 --- a/scripts/download_icebug.sh +++ b/scripts/download_icebug.sh @@ -7,7 +7,7 @@ PROJECT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)" REPOSITORY="${ICEBUG_GITHUB_REPOSITORY:-Ladybug-Memory/icebug}" TARGET_DIR="${ICEBUG_TARGET_DIR:-$PROJECT_DIR/src-tauri/icebug}" -VERSION="${ICEBUG_VERSION:-12.9}" +VERSION="${ICEBUG_VERSION:-13.0}" OS="$(uname -s)" ARCH="$(uname -m)"