From 49776645bcd2afaa2eebc809cbb29e9e779ad9cd Mon Sep 17 00:00:00 2001 From: GyulyVGC Date: Sun, 3 Aug 2025 15:47:13 +0200 Subject: [PATCH] revert edits to cargo clean command in CI/CD --- .github/workflows/package.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index a7977bf1..884214bb 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -81,15 +81,14 @@ jobs: - name: Test (release mode) if: matrix.os == 'macos' || matrix.os == 'ubuntu' || matrix.os == 'windows' && matrix.arch == 'amd64' - run: cargo test --release --verbose -- --nocapture && + run: | + cargo test --release --verbose -- --nocapture && + cargo clean - name: Install Cross if: matrix.os == 'ubuntu' run: cargo install cross --git https://github.com/cross-rs/cross - - name: Clean - run: cargo clean - - name: Build binary (Linux) if: matrix.os == 'ubuntu' run: cross build --release --target ${{ matrix.target }}