From 879e03eed591d736619464fdd5e859d60cd7af38 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 27 Nov 2023 19:55:17 -0500 Subject: [PATCH] All one line (thanks PowerShell) --- .github/workflows/build.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index db10192..2c117d6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -125,9 +125,7 @@ jobs: with: targets: ${{ matrix.target }} - name: Cargo build - run: | - cargo build --profile ${{ env.BUILD_PROFILE }} --target ${{ matrix.target }} \ - --bin ${{ env.CARGO_BIN_NAME }} --features ${{ matrix.features }} + run: cargo build --profile ${{ env.BUILD_PROFILE }} --target ${{ matrix.target }} --bin ${{ env.CARGO_BIN_NAME }} --features ${{ matrix.features }} - name: Upload artifacts uses: actions/upload-artifact@v3 with: