Skip to content

Commit

Permalink
fix(release): source cargo env (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
yetone authored Sep 26, 2024
1 parent 753b774 commit 93abd8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,10 @@ jobs:
if: ${{ matrix.config.os_name == 'linux' }}
run: |
curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
. "$HOME/.cargo/env"
- name: Build all crates
run: cargo build --release --features ${{ matrix.feature }}
run: |
. "$HOME/.cargo/env"
cargo build --release --features ${{ matrix.feature }}
- name: Handle binaries
if: ${{ matrix.config.os_name != 'windows' }}
shell: bash
Expand Down

0 comments on commit 93abd8e

Please sign in to comment.