From 7bc6f329cc5534f797044835937c9cbddc6fb11f Mon Sep 17 00:00:00 2001 From: guylamar2006 Date: Thu, 17 Oct 2024 14:38:27 -0500 Subject: [PATCH] New rust toolchain --- .github/actions/macos/action.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/actions/macos/action.yml b/.github/actions/macos/action.yml index c44620d8..ac43542e 100644 --- a/.github/actions/macos/action.yml +++ b/.github/actions/macos/action.yml @@ -3,11 +3,9 @@ description: Build macOS builds runs: using: "composite" steps: - - uses: Swatinem/rust-cache@v2 - - uses: actions-rs/cargo@v1 - with: - command: build - args: --release + - uses: dtolnay/rust-toolchain@stable + - name: Build macOS Release + run: cargo build --release - name: copy binary shell: bash run: cp target/release/neothesia .github/app/Neothesia.app/Contents/MacOS