Skip to content

Commit

Permalink
Adapt to GH runners being ARM now
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpdp7 committed Apr 28, 2024
1 parent b0afc56 commit 4172efe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ jobs:
profile: minimal
toolchain: stable
override: true
target: aarch64-apple-darwin
target: x86_64-apple-darwin
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --release --target=x86_64-apple-darwin
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --target=aarch64-apple-darwin
- run: lipo -create -output target/ubpkg target/release/ubpkg target/aarch64-apple-darwin/release/ubpkg
- run: lipo -create -output target/ubpkg target/x86_64-apple-darwin/release/ubpkg target/aarch64-apple-darwin/release/ubpkg
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 4172efe

Please sign in to comment.