Skip to content

Commit 1b6e041

Browse files
author
Ulises Himely
committed
fix: try macos runner
1 parent 371eaeb commit 1b6e041

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,25 @@ name: Build on Release
77
jobs:
88
mac_arm:
99
name: Mac ARM
10-
runs-on: ubuntu-latest
10+
runs-on: macos-latest
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: actions-rs/toolchain@v1
1414
with:
1515
toolchain: stable
16-
target: aarch64-apple-darwin
1716
- uses: actions-rs/cargo@v1
1817
with:
1918
command: build
2019
args: --release --target aarch64-apple-darwin
2120
mac_intel:
2221
name: Mac Intel
23-
runs-on: ubuntu-latest
22+
runs-on: macos-latest
2423
steps:
24+
- run: rustup target add x86_64-apple-darwin
2525
- uses: actions/checkout@v2
2626
- uses: actions-rs/toolchain@v1
2727
with:
2828
toolchain: stable
29-
target: x86_64-apple-darwin
3029
- uses: actions-rs/cargo@v1
3130
with:
3231
command: build

0 commit comments

Comments
 (0)