From a04d907b73e83e538792c7442af39c18561279eb Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Thu, 30 Apr 2026 13:35:00 -0300 Subject: [PATCH] fix(ci): publish-cli-rs script for Powershell (#15309) --- .github/workflows/publish-cli-rs.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish-cli-rs.yml b/.github/workflows/publish-cli-rs.yml index c5fd1fcff818..e40a2ddd42d4 100644 --- a/.github/workflows/publish-cli-rs.yml +++ b/.github/workflows/publish-cli-rs.yml @@ -72,19 +72,19 @@ jobs: - name: Build CLI if: ${{ !matrix.config.cross }} - run: | - cargo build --manifest-path ./crates/tauri-cli/Cargo.toml \ - --target ${{ matrix.config.rust_target }} \ - --profile release-size-optimized \ - ${{ matrix.config.args }} + run: >- + cargo build --manifest-path ./crates/tauri-cli/Cargo.toml + --target ${{ matrix.config.rust_target }} + --profile release-size-optimized + ${{ matrix.config.args }} - name: Build CLI (cross) if: ${{ matrix.config.cross }} - run: | - cross build --manifest-path ./crates/tauri-cli/Cargo.toml \ - --target ${{ matrix.config.rust_target }} \ - --profile release-size-optimized \ - ${{ matrix.config.args }} + run: >- + cross build --manifest-path ./crates/tauri-cli/Cargo.toml + --target ${{ matrix.config.rust_target }} + --profile release-size-optimized + ${{ matrix.config.args }} - name: Upload CLI uses: actions/upload-artifact@v4