CI: Spacing between commands

Signed-off-by: Luis Garcia <git@luigi311.com>
This commit is contained in:
Luis Garcia 2024-11-24 01:08:47 -07:00
parent 60f84bdbb9
commit 8ec6b11c8e
4 changed files with 23 additions and 0 deletions

View file

@ -16,11 +16,14 @@ jobs:
- name: Install Binstall
uses: cargo-bins/cargo-binstall@main
- name: install Tauri
run: cargo binstall tauri-cli --no-confirm
- name: npm install (desktop)
working-directory: desktop
run: npm install
- name: npm install (librqbit/webui)
working-directory: crates/librqbit/webui
run: npm install
@ -30,6 +33,7 @@ jobs:
run:
rustup target add aarch64-apple-darwin && rustup target add x86_64-apple-darwin &&
cargo tauri build --target universal-apple-darwin --ci
- uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
@ -44,6 +48,7 @@ jobs:
cargo build --profile release-github --target x86_64-apple-darwin &&
cargo build --profile release-github --target aarch64-apple-darwin &&
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