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