Skip to content

Commit

Permalink
Add release notes link and header to beginning of releasen notes
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque committed May 15, 2024
1 parent b75cb32 commit 36e3f65
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,13 @@ jobs:
--base "release" \
--limit 1 \
--json "body" \
| jq '.[].body'\
| jq '.[].body' \
| jq -r . \
| sed '1,/^# Releases/d')
| sed '1,/^# Releases/d' \
)
# Prepend the Firebase release notes link and header
RELEASE_NOTES="For more detailed release notes, see [Firebase JavaScript SDK Release Notes](https://firebase.google.com/support/release-notes/js).\n\n# What's Changed\n\n${RELEASE_NOTES}"
# Create the GitHub release
gh release create "$NEWEST_TAG" \
Expand Down

0 comments on commit 36e3f65

Please sign in to comment.