Skip to content

Commit

Permalink
fix: automatically add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteregrets committed Nov 5, 2024
1 parent c511d3d commit 7a52840
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,18 @@ jobs:
uses: SebRollen/toml-action@v1.2.0
with:
file: Cargo.toml
field: package.version
field: package.version
- uses: mindsers/changelog-reader-action@v2
id: changelog_reader
with:
version: ${{ steps.version.outputs.value }}
- name: download artifacts
uses: actions/download-artifact@v4
- name: create release
- name: create release
uses: softprops/action-gh-release@v2
with:
files: |
**/*.tar.gz
**/*.zip
name: ${{ steps.version.outputs.value }}
name: ${{ steps.version.outputs.value }}
body: ${{ steps.changelog_reader.outputs.changes }}

0 comments on commit 7a52840

Please sign in to comment.