From 765f01e6390f985a4cee34bf7273c1e93ba98c75 Mon Sep 17 00:00:00 2001 From: Tricked <72335827+SkyBlockDev@users.noreply.github.com> Date: Sat, 16 Apr 2022 15:07:05 +0200 Subject: [PATCH] fix: more workflow stuff --- .github/workflows/release-desktop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-desktop.yml b/.github/workflows/release-desktop.yml index 01c87a7..91e194a 100644 --- a/.github/workflows/release-desktop.yml +++ b/.github/workflows/release-desktop.yml @@ -21,12 +21,12 @@ jobs: include: - build: x86_64-linux os: ubuntu-20.04 - rust: stable + rust: nightly target: x86_64-unknown-linux-gnu cross: false - build: x86_64-macos os: macos-latest - rust: stable + rust: nightly target: x86_64-apple-darwin cross: false # Windows builts dont work properly, x86_64-windows @@ -66,7 +66,7 @@ jobs: with: use-cross: ${{ matrix.cross }} command: build - args: --release --target ${{ matrix.target }} + args: --release --target ${{ matrix.target }} --bin ascella-desktop - name: Strip release binary (linux and macos) run: strip "./target/${{ matrix.target }}/release/$BIN_NAME"