diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 72de5a3e8..05f48fdcf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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