From 808112630d3d71d0d49aa03df7ad0b13f876c2a9 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Tue, 30 Apr 2024 13:32:22 +0900 Subject: [PATCH] Add support for macOS platform in GitHub Actions workflow --- .github/workflows/github-actions-builder.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/github-actions-builder.yml b/.github/workflows/github-actions-builder.yml index 015bd1ce..2db36fa2 100644 --- a/.github/workflows/github-actions-builder.yml +++ b/.github/workflows/github-actions-builder.yml @@ -64,6 +64,8 @@ jobs: files: | src-tauri/target/x86_64-unknown-linux-gnu/release/**/*.deb src-tauri/target/x86_64-unknown-linux-gnu/release/**/*.AppImage + - if: matrix.platform == 'macos-latest' + run: rustup target add x86_64-apple-darwin - if: matrix.platform == 'macos-latest' run: pnpm tauri build --target x86_64-apple-darwin - if: matrix.platform == 'macos-latest'