mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
9f216e0655
Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
467 B
YAML
17 lines
467 B
YAML
name: Cache Cargo (windows-setup)
|
|
description: Cache registry, git sources, and target/ for the Windows installer Rust workspace
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Cache Cargo
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
app/desktop/windows-setup/target
|
|
key: cargo-windows-${{ runner.os }}-${{ github.sha }}
|
|
restore-keys: |
|
|
cargo-windows-${{ runner.os }}-
|