Skip to content

Commit

Permalink
Remove --all flag on release build
Browse files Browse the repository at this point in the history
  • Loading branch information
iamalwaysuncomfortable committed Jun 27, 2023
1 parent bb536a2 commit 51047e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Build Aleo
run: |
cargo build --all --release && strip target/release/aleo
cargo build --release && strip target/release/aleo
- id: get_version
uses: battila7/get-version-action@v2
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Build Aleo
run: |
cargo build --all --release && strip target/release/aleo
cargo build --release && strip target/release/aleo
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
run: |
SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path) \
MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version) \
cargo build --all --release --target=aarch64-apple-darwin && strip target/aarch64-apple-darwin/release/aleo
cargo build --release --target=aarch64-apple-darwin && strip target/aarch64-apple-darwin/release/aleo
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Build Aleo
run: |
cargo build --all --release
cargo build --release
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true

Expand Down

0 comments on commit 51047e4

Please sign in to comment.