remove dbgsym

This commit is contained in:
boypt
2025-04-22 17:22:06 +08:00
parent 2509430dfe
commit 88878ba286
2 changed files with 9 additions and 4 deletions

View File

@@ -232,6 +232,10 @@ jobs:
name: debian11-amd64
path: ./output
- name: Remove dbgsym packages
run: |
rm -fv ${{ github.workspace }}/output/*dbgsym*
- name: Get tag message
run: |
echo -e "> Automated release created by GitHub Actions.\n" > ${{ github.workspace }}/RELEASE.md
@@ -239,10 +243,6 @@ jobs:
TAG_NAME="${GITHUB_REF#refs/tags/}"
git tag -l --format='%(contents)' "${TAG_NAME}" | tee -a ${{ github.workspace }}/RELEASE.md
- name: Remove dbgsym packages
run: |
rm -fv ${{ github.workspace }}/output/*dbgsym*
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1

View File

@@ -274,12 +274,17 @@ jobs:
name: debian11-arm64
path: ./output
- name: Remove dbgsym packages
run: |
rm -fv ${{ github.workspace }}/output/*dbgsym*
- name: Get tag message
run: |
echo -e "> Automated release created by GitHub Actions.\n" > ${{ github.workspace }}/RELEASE.md
GITHUB_REF=${{ github.ref }}
TAG_NAME="${GITHUB_REF#refs/tags/}"
git tag -l --format='%(contents)' "${TAG_NAME}" | tee -a ${{ github.workspace }}/RELEASE.md
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1