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 243fcf4
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
@@ -1,7 +1,7 @@
name: release
on:
push:
tags: ["[0-9]+.[0-9]+.[0-9]+*"]
tags: ["[0-9]+.[0-9]+.[0-9]+*"]
workflow_dispatch:
jobs:
build_binaries:
Expand Down Expand Up @@ -85,7 +85,11 @@ jobs:
uses: SebRollen/[email protected]
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
Expand All @@ -94,4 +98,5 @@ jobs:
files: |
**/*.tar.gz
**/*.zip
name: ${{ steps.version.outputs.value }}
name: ${{ steps.version.outputs.value }}
body: ${{ steps.changelog_reader.outputs.changes }}

0 comments on commit 243fcf4

Please sign in to comment.