From fcfb0d7c078bc1e5df28761badfca0eb10bc38f0 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Thu, 7 Oct 2021 15:41:17 +0200 Subject: [PATCH] Strip binaries for linux ui --- .github/workflows/release_on_v_tag.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release_on_v_tag.yml b/.github/workflows/release_on_v_tag.yml index 7d3f7ae..0ceb1f9 100644 --- a/.github/workflows/release_on_v_tag.yml +++ b/.github/workflows/release_on_v_tag.yml @@ -77,6 +77,9 @@ jobs: file: ${{ matrix.file }} args: ${{ matrix.args }} strip: ${{ matrix.strip }} + - name: Strip binaries + if: ${{ matrix.os == 'ubuntu-latest' && matrix.ui == true}} + run: strip ${{ matrix.file }} - name: Upload Release Asset id: upload-release-asset uses: actions/upload-release-asset@v1