Skip to content

Commit

Permalink
ci: Use aliases for Cargo in release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
uggla committed Oct 22, 2024
1 parent 2a57d7c commit d2351ef
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:
- name: Build
run: |
cargo build --release --target wasm32-unknown-unknown
# cargo build --release --target wasm32-unknown-unknown
cargo bwr
- name: Prepare package
run: |
Expand Down Expand Up @@ -83,7 +84,8 @@ jobs:
- name: Build
run: |
cargo build --release --target x86_64-unknown-linux-gnu
# cargo build --release --target x86_64-unknown-linux-gnu
cargo br --target x86_64-unknown-linux-gnu
- name: Prepare package
run: |
Expand Down Expand Up @@ -129,7 +131,8 @@ jobs:

- name: Build
run: |
cargo build --release --target x86_64-pc-windows-msvc
# cargo build --release --target x86_64-pc-windows-msvc
cargo build br --target x86_64-pc-windows-msvc
- name: Prepare package
run: |
Expand Down Expand Up @@ -179,7 +182,8 @@ jobs:
- name: Build
run: |
cargo build --release --target x86_64-apple-darwin
# cargo build --release --target x86_64-apple-darwin
cargo build br --target x86_64-apple-darwin
- name: Prepare Package
run: |
Expand Down Expand Up @@ -225,7 +229,8 @@ jobs:
- name: Build
run: |
cargo build --release --target aarch64-apple-darwin
# cargo build --release --target aarch64-apple-darwin
cargo br --target aarch64-apple-darwin
- name: Prepare Package
run: |
Expand Down

0 comments on commit d2351ef

Please sign in to comment.