File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 13
13
- name : Check out Git repository
14
14
uses : actions/checkout@v4
15
15
16
+ - name : Build changelog
17
+ id : changelog
18
+ uses : mikepenz/release-changelog-builder-action@v4
19
+ with :
20
+ token : ${{ secrets.GITHUB_TOKEN }}
21
+ toTag : ${{ github.event.release.tag_name }}
22
+ commitMode : true
23
+ configuration : .github/changelog.json
24
+
16
25
- name : Set up .NET
17
26
uses : zyactions/dotnet-setup@v1
18
27
with :
32
41
33
42
- name : Push Templates
34
43
run : dotnet push bin/BlazorDesktop.Templates/Release/BlazorDesktop.Templates.${{ github.event.release.tag_name }}.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
44
+
45
+ - name : Update release
46
+ uses : ncipollo/release-action@v1
47
+ with :
48
+ token : ${{ secrets.GITHUB_TOKEN }}
49
+ tag : ${{ github.event.release.tag_name }}
50
+ allowUpdates : true
51
+ prerelease : ${{ github.event.release.prerelease }}
52
+ body : ${{ steps.changelog.outputs.changelog }}
You can’t perform that action at this time.
0 commit comments