mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
926343e90e
Use scope-specific Gradle cache paths, global release concurrency, Rust v3 key with v1/v2 fallbacks, and ensure Android SDK cache dirs exist before save. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
448 B
YAML
15 lines
448 B
YAML
name: Save Windows Rust build cache
|
|
description: Save Cargo registry, git checkouts, and the windows-setup target directory
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: actions/cache/save@v5
|
|
continue-on-error: true
|
|
with:
|
|
key: windows-rust-${{ runner.os }}-v3-${{ hashFiles('app/desktop/windows-setup/Cargo.lock') }}
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
app/desktop/windows-setup/target
|