From 8f8ebb01bbd5e69bc24ea1f0e889756d2c963e12 Mon Sep 17 00:00:00 2001 From: Jason Liquorish Date: Fri, 5 Jun 2020 19:50:12 +0100 Subject: [PATCH] Add step to strip binaries (#13) * Add step to strip binaries --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb8baea..6b93f4c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -115,9 +115,9 @@ jobs: run: | if [[ "${{ matrix.build }}" == "linux-arm" ]]; then sudo apt install binutils-arm-linux-gnueabihf - arm-linux-gnueabihf-strip target/${{ matrix.target }}/release/github-action-test + arm-linux-gnueabihf-strip target/${{ matrix.target }}/release/warp-cors else - strip target/${{ matrix.target }}/release/github-action-test + strip target/${{ matrix.target }}/release/warp-cors fi - name: Build archive