Skip to content

Commit

Permalink
feat: add release notes generation to GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mvgrimes committed Apr 24, 2024
1 parent 61e1f2e commit 1fae9fc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,17 @@ jobs:
zip -r ${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.zip ${{ env.PLUGIN_NAME }}
ls
- name: Create release notes
uses: johnyherangi/create-release-notes@main
id: create-release-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release
id: create_release
id: create-release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.create-release-notes.outputs.release-notes }}
files: |
main.js
styles.css
Expand Down

0 comments on commit 1fae9fc

Please sign in to comment.