Skip to content

Commit

Permalink
Fixed create release workflow to look at docs/CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonbh committed Dec 20, 2024
1 parent cf88e09 commit a46909b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: extract_notes
run: |
VERSION=${{ github.event.inputs.tag }}
sed -n "/## \\[$VERSION\\]/,/## \\[/p" CHANGELOG.md | sed '$d' | sed "s/## \\[$VERSION\\]/## $VERSION/" > RELEASE_NOTES.md
sed -n "/## \\[$VERSION\\]/,/## \\[/p" docs/CHANGELOG.md | sed '$d' | sed "s/## \\[$VERSION\\]/## $VERSION/" > RELEASE_NOTES.md
- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit a46909b

Please sign in to comment.