We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73d1a53 commit 3b78524Copy full SHA for 3b78524
1 file changed
.github/workflows/release.yml
@@ -1,5 +1,6 @@
1
on:
2
- release
3
+ - push
4
5
name: Build on Release
6
@@ -12,12 +13,10 @@ jobs:
12
13
- uses: actions-rs/toolchain@v1
14
with:
15
toolchain: stable
- target: aarch64-apple-darwin
16
- override: true
17
- uses: actions-rs/cargo@v1
18
19
command: build
20
- args: --target aarch64-apple-darwin
+ args: --release --target aarch64-apple-darwin
21
mac_intel:
22
name: Mac Intel
23
runs-on: ubuntu-latest
@@ -26,9 +25,7 @@ jobs:
26
25
27
28
29
- target: x86_64-apple-darwin
30
31
32
33
34
- args: --target x86_64-apple-darwin
+ args: --release --target x86_64-apple-darwin
0 commit comments