diff --git a/.github/workflows/create-amd64-release.yml b/.github/workflows/create-amd64-release.yml index 6f7b31c..2cae3e7 100644 --- a/.github/workflows/create-amd64-release.yml +++ b/.github/workflows/create-amd64-release.yml @@ -239,6 +239,10 @@ jobs: TAG_NAME="${GITHUB_REF#refs/tags/}" git tag -l --format='%(contents)' "${TAG_NAME}" | tee -a ${{ github.workspace }}/RELEASE.md + - name: Remove debug pkgs + run: | + rm -fv "${{ github.workspace }}/output/*debug*" + - name: Create Release id: create_release uses: ncipollo/release-action@v1 diff --git a/.github/workflows/create-arm64-release.yml b/.github/workflows/create-arm64-release.yml index dd0fcd1..0383095 100644 --- a/.github/workflows/create-arm64-release.yml +++ b/.github/workflows/create-arm64-release.yml @@ -186,6 +186,10 @@ jobs: TAG_NAME="${GITHUB_REF#refs/tags/}" git tag -l --format='%(contents)' "${TAG_NAME}" | tee -a ${{ github.workspace }}/RELEASE.md + - name: Remove debug pkgs + run: | + rm -fv "${{ github.workspace }}/output/*debug*" + - name: Create Release id: create_release uses: ncipollo/release-action@v1