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
13 changes: 13 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,16 @@ jobs:

# prepack (clean + tsc) rebuilds dist before packing.
- run: npm publish --access public

github-release:
needs: publish
runs-on: ubuntu-latest
permissions:
contents: write # create the GitHub Release
steps:
# gh is preinstalled on the runner; notes are generated from the PRs
# merged since the previous release. No third-party action.
- name: Create GitHub Release with generated notes
env:
GH_TOKEN: ${{ github.token }}
run: gh release create "$GITHUB_REF_NAME" -R "$GITHUB_REPOSITORY" --verify-tag --generate-notes --latest
Loading