From ec160f593cbee940f92e0084fe67963cfe368004 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Thu, 8 Aug 2024 00:53:29 +0100 Subject: [PATCH 1/2] Update macos runner to macos-latest --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 540bb2b..34860cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: target/release-github/rqbit.exe cross-compile-on-macos: - runs-on: macos-11 + runs-on: macos-latest steps: - uses: actions/checkout@v4 From 00e7a90624b67763b314904bb88c6b8f077be8f8 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Thu, 8 Aug 2024 08:52:02 +0100 Subject: [PATCH 2/2] Fixing macos CI build --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34860cd..157624a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,8 @@ jobs: - name: cargo tauri build working-directory: desktop - run: rustup target add aarch64-apple-darwin && + run: + rustup target add aarch64-apple-darwin && rustup target add x86_64-apple-darwin && cargo tauri build --target universal-apple-darwin --ci - uses: softprops/action-gh-release@v1 with: