From a378be8bc6deb5e6849ed3872d46b4222f378d45 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Tue, 31 May 2022 17:30:50 +1000 Subject: [PATCH] Revert "Run `strip` as a separate step in job `build`" This reverts commit 8bdd089775409bc1f0bde482e7e7cd87bcf5b650. --- .github/workflows/rust.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1070e785..9ff74d56 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -100,10 +100,6 @@ jobs: - name: Copy and rename utility run: cp target/${{ matrix.target }}/release/${{ matrix.output }} ${{ matrix.output }} - - name: Strip the executable - if: ${{ matrix.os != 'windows-latest' }} - run: strip ${{ matrix.output }} - - name: Create archive (tgz, linux) if: ${{ matrix.os != 'macos-latest' && matrix.os != 'windows-latest' }} run: tar -czvf cargo-binstall-${{ matrix.target }}.tgz ${{ matrix.output }}