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
11 changes: 7 additions & 4 deletions scripts/release-github.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#!/bin/bash

# This script is used to create a GitHub release.
# - Tag the commit and push it to GitHub.
# - Tag the commit and push the tag to GitHub.
# - Create a GitHub release with assets.
# - Update the changelog.
# - Include the changelog in the release notes.

set -euo pipefail

uv run semantic-release version \
--skip-build \
--push
--skip-build \ # Built in another task.
--no-commit \ # Work with main branch protection settings.
--no-changelog \ # A changelog body will still be included in the release notes.
--push \ # Push the tag to GitHub (not a commit).
--vcs-release # Create a GitHub release.