From 1d3ddf25b2c887759a72d3ca18fcfc631078a36c Mon Sep 17 00:00:00 2001 From: Yuriy Date: Thu, 29 Jan 2026 16:16:14 +0300 Subject: [PATCH] ci: fix rust toolchain action --- .github/workflows/ci.yml | 7 +++---- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c632558..a4bd55b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,11 +35,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Rust + - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - targets: aarch64-apple-darwin,x86_64-apple-darwin + with: + toolchain: stable - name: Cache Cargo uses: actions/cache@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 37a8946..3730e51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,11 +24,11 @@ jobs: cache: 'npm' cache-dependency-path: desktop/ui/package-lock.json - - name: Install Rust + - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - targets: aarch64-apple-darwin,x86_64-apple-darwin + with: + toolchain: stable + targets: aarch64-apple-darwin,x86_64-apple-darwin - name: Install UI deps run: cd desktop/ui && npm ci