Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,11 @@ jobs:
cd ./artifacts
TAG="v${VERSION}"

# Check if release already exists and delete it (it was created without artifacts)
# Check if release already exists
if gh release view "${TAG}" &>/dev/null; then
echo "Release ${TAG} already exists, deleting it to recreate with artifacts..."
gh release delete "${TAG}" --yes
echo "Release ${TAG} already exists (immutable). Skipping release creation."
echo "Note: Artifacts were built but cannot be uploaded to existing immutable release."
exit 0
fi

# Create the release with all artifacts
Expand Down