fix: pre-cleanup release assets to avoid gh upload conflict
This commit is contained in:
@@ -6,7 +6,24 @@ on:
|
|||||||
- published
|
- published
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
# Pre-cleanup: delete all existing assets from the release to avoid gh release upload failure
|
||||||
|
pre-release-cleanup:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Delete Existing Release Assets
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
TAG_NAME="${{ github.event.release.tag_name }}"
|
||||||
|
# List all existing assets and delete them
|
||||||
|
gh release view "$TAG_NAME" --json assets --jq '.assets[].name' 2>/dev/null | while read -r filename; do
|
||||||
|
echo "Deleting existing asset: $filename"
|
||||||
|
gh release delete-asset "$TAG_NAME" "$filename" --yes 2>/dev/null || true
|
||||||
|
done
|
||||||
|
shell: bash
|
||||||
|
|
||||||
cd:
|
cd:
|
||||||
|
needs: pre-release-cleanup
|
||||||
uses: halo-sigs/reusable-workflows/.github/workflows/plugin-cd.yaml@v4
|
uses: halo-sigs/reusable-workflows/.github/workflows/plugin-cd.yaml@v4
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|||||||
Reference in New Issue
Block a user