Skip to content

Commit bc31ac9

Browse files
committed
Update Action
1 parent 4588271 commit bc31ac9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,20 @@ jobs:
6868
path: builds/*.AppImage
6969

7070
- name: Get changelog entry
71+
id: changelog_reader
7172
uses: mindsers/changelog-reader-action@v2
7273
if: startsWith(github.ref, 'refs/tags/' )
7374
with:
7475
validation_level: warn
75-
version: ${{ steps.tag_name.outputs.current_version }}
76+
version: ${{ github.ref_name }}
7677
path: ./CHANGELOG.md
7778

7879
- name: Release
7980
uses: softprops/action-gh-release@v1
8081
if: startsWith(github.ref, 'refs/tags/' )
81-
name: "CATS Configurator ${{ github.ref_name }}"
82-
body: ${{ steps.changelog_reader.outputs.changes }}
83-
with:
82+
with:
83+
name: "CATS Configurator ${{ github.ref_name }}"
84+
body: ${{ steps.changelog_reader.outputs.changes }}
8485
files: |
8586
builds/*.zip
8687
builds/*.exe

0 commit comments

Comments
 (0)