We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b6e041 commit 36c7964Copy full SHA for 36c7964
1 file changed
.github/workflows/release.yml
@@ -1,14 +1,15 @@
1
on:
2
- - release
3
- - push
+ release:
+ types: [published]
4
5
name: Build on Release
6
7
jobs:
8
mac_arm:
9
name: Mac ARM
10
- runs-on: macos-latest
+ runs-on: ubuntu-latest
11
steps:
12
+ - run: rustup target add aarch64-apple-darwin
13
- uses: actions/checkout@v2
14
- uses: actions-rs/toolchain@v1
15
with:
@@ -19,7 +20,7 @@ jobs:
19
20
args: --release --target aarch64-apple-darwin
21
mac_intel:
22
name: Mac Intel
23
24
25
- run: rustup target add x86_64-apple-darwin
26
0 commit comments