Skip to content
Open
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
12 changes: 6 additions & 6 deletions actions/release-notes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ outputs:
runs:
using: "composite"
steps:
- name: "Setup Node.js"
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc

- name: "Checkout latest main"
run: |
git checkout main
Expand All @@ -33,12 +38,7 @@ runs:

- name: "Extract release notes from CHANGELOG"
id: notes
run: |
{
echo 'release_details<<EOF'
awk '/^## / { if (p) exit; p=1 } p' CHANGELOG.md | sed '1d'
echo EOF
} >> "$GITHUB_OUTPUT"
run: node '${{ github.action_path }}/../../dist/extract-release-notes.js'
shell: bash

- name: "Create GitHub release"
Expand Down