ci: fix rust toolchain action

This commit is contained in:
Yuriy 2026-01-29 16:16:14 +03:00
parent 7e31b93afa
commit 1d3ddf25b2
2 changed files with 7 additions and 8 deletions

View File

@ -35,11 +35,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install Rust - name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable uses: dtolnay/rust-toolchain@stable
with: with:
toolchain: stable toolchain: stable
targets: aarch64-apple-darwin,x86_64-apple-darwin
- name: Cache Cargo - name: Cache Cargo
uses: actions/cache@v4 uses: actions/cache@v4
with: with:

View File

@ -24,11 +24,11 @@ jobs:
cache: 'npm' cache: 'npm'
cache-dependency-path: desktop/ui/package-lock.json cache-dependency-path: desktop/ui/package-lock.json
- name: Install Rust - name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable uses: dtolnay/rust-toolchain@stable
with: with:
toolchain: stable toolchain: stable
targets: aarch64-apple-darwin,x86_64-apple-darwin targets: aarch64-apple-darwin,x86_64-apple-darwin
- name: Install UI deps - name: Install UI deps
run: cd desktop/ui && npm ci run: cd desktop/ui && npm ci