We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afafb4f commit 0bc93e9Copy full SHA for 0bc93e9
1 file changed
.github/workflows/build.yml
@@ -328,4 +328,21 @@ jobs:
328
docker push ghcr.io/requarks/wiki:$MAJOR
329
docker push ghcr.io/requarks/wiki:$MAJORMINOR
330
docker push ghcr.io/requarks/wiki:latest
331
+
332
+ - name: Generate Changelog
333
+ id: changelog
334
+ uses: Requarks/changelog-action@v1
335
+ with:
336
+ token: ${{ github.token }}
337
+ tag: ${{ github.ref_name }}
338
+ writeToFile: false
339
340
+ - name: Update GitHub Release
341
+ uses: ncipollo/release-action@v1
342
343
+ allowUpdates: true
344
+ draft: false
345
+ name: ${{ github.ref_name }}
346
+ body: ${{ steps.changelog.outputs.changes }}
347
348
0 commit comments