1 parent ed90965 commit ac7f5a8Copy full SHA for ac7f5a8
1 file changed
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: Release
3
on:
4
push:
5
tags:
6
- - "*"
+ - "v*"
7
8
permissions:
9
contents: write
@@ -24,12 +24,24 @@ jobs:
24
runs-on: ${{ matrix.build.os }}
25
steps:
26
- name: Checkout
27
- uses: actions/checkout@v5
+ uses: actions/checkout@v6
28
29
- name: Build
30
+ id: build
31
uses: dAppServer/wails-build-action@main
32
with:
33
build-name: ${{ matrix.build.name }}
34
build-platform: ${{ matrix.build.platform }}
35
go-version: 1.25
36
node-version: 24
37
+
38
+ - name: Generate Changelog
39
+ id: github_release
40
+ uses: mikepenz/release-changelog-builder@v6
41
+ env:
42
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43
44
+ - name: Create Release
45
+ uses: softprops/action-gh-release@v2.5.0
46
+ with:
47
+ body: ${{steps.github_release.outputs.changelog}}
0 commit comments