Browse Source
ci: update release changelog on publish
[skip ci]
pull/5021/head
Nicolas Giard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
17 additions and
0 deletions
-
.github/workflows/build.yml
|
|
@ -328,4 +328,21 @@ jobs: |
|
|
|
docker push ghcr.io/requarks/wiki:$MAJOR |
|
|
|
docker push ghcr.io/requarks/wiki:$MAJORMINOR |
|
|
|
docker push ghcr.io/requarks/wiki:latest |
|
|
|
|
|
|
|
- name: Generate Changelog |
|
|
|
id: changelog |
|
|
|
uses: Requarks/changelog-action@v1 |
|
|
|
with: |
|
|
|
token: ${{ github.token }} |
|
|
|
tag: ${{ github.ref_name }} |
|
|
|
writeToFile: false |
|
|
|
|
|
|
|
- name: Update GitHub Release |
|
|
|
uses: ncipollo/release-action@v1 |
|
|
|
with: |
|
|
|
allowUpdates: true |
|
|
|
draft: false |
|
|
|
name: ${{ github.ref_name }} |
|
|
|
body: ${{ steps.changelog.outputs.changes }} |
|
|
|
token: ${{ github.token }} |
|
|
|
|