We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a73721 commit 59a6a96Copy full SHA for 59a6a96
.github/workflows/release_mac.yml
@@ -19,6 +19,13 @@ jobs:
19
- name: Set up Rust toolchain
20
uses: dtolnay/rust-toolchain@stable # Set up the Rust toolchain
21
22
+ # Install macOS targets using rustup
23
+ - name: Add macOS targets
24
+ run: |
25
+ rustup target add x86_64-apple-darwin # Add macOS Intel target
26
+ rustup target add aarch64-apple-darwin # Add macOS ARM target
27
+
28
29
# Build for macOS Intel (x86_64)
30
- name: Build for macOS Intel
31
run: |
0 commit comments