Skip to content

Commit

Permalink
Fixing macos CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatson committed Aug 8, 2024
1 parent 00e7a90 commit b090736
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ jobs:

- name: Build release OSX universal binary
run: rustup target install aarch64-apple-darwin &&
cargo build --profile release-github &&
cargo build --profile release-github --target x86_64-apple-darwin &&
cargo build --profile release-github --target aarch64-apple-darwin &&
lipo ./target/release-github/rqbit ./target/aarch64-apple-darwin/release-github/rqbit -create -output ./target/artifacts/rqbit-osx-universal
lipo ./target/x86_64-apple-darwin/release-github/rqbit ./target/aarch64-apple-darwin/release-github/rqbit -create -output ./target/artifacts/rqbit-osx-universal
- uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
Expand Down

0 comments on commit b090736

Please sign in to comment.