Skip to content

feat: add optional release notes body input #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
fix: format correctly
  • Loading branch information
damienbutt committed Apr 7, 2025
commit c4c15d690c20c47a88ae12d4357fe3ead77face5
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,12 @@ jobs:
# Append release body if provided
if [ -n "$RELEASE_BODY" ]; then
# Add two newlines to separate the note from the changelog
RELEASE_NOTE="$RELEASE_NOTE\n\n$RELEASE_BODY"
RELEASE_NOTE=$(cat <<EOF
$RELEASE_NOTE

$RELEASE_BODY
EOF
)
fi

gh release create "$GITHUB_REF_NAME" *.wasm "$REPO_NAME.tar.gz" \
Expand Down