Skip to content

Commit 9b1872b

Browse files
committed
ci: don't delete release tag on cleanup
1 parent 7b12040 commit 9b1872b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
TAG="${{ needs.check-tag.outputs.tag_name }}"
134134
if gh release view "$TAG" --json isDraft --jq '.isDraft' 2>/dev/null | grep -q true; then
135135
echo "Deleting existing draft release for tag: $TAG"
136-
gh release delete "$TAG" --yes --cleanup-tag
136+
gh release delete "$TAG" --yes
137137
fi
138138
env:
139139
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)