👷 Change Release Changelogs
This commit is contained in:
parent
fbb35ef2b2
commit
043cb07cb7
3 changed files with 29 additions and 6 deletions
18
.github/release-drafter.yml
vendored
Normal file
18
.github/release-drafter.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
categories:
|
||||
- title: '🚀 Features'
|
||||
labels:
|
||||
- 'feature'
|
||||
- 'enhancement'
|
||||
- title: '🐛 Bug Fixes'
|
||||
labels:
|
||||
- 'fix'
|
||||
- 'bugfix'
|
||||
- 'bug'
|
||||
- title: '🧹 Maintenance'
|
||||
labels:
|
||||
- 'chore'
|
||||
- 'dependencies'
|
||||
template: |
|
||||
## Changes
|
||||
|
||||
$CHANGES
|
11
.github/workflows/release.yaml
vendored
11
.github/workflows/release.yaml
vendored
|
@ -24,7 +24,16 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Release
|
||||
- name: Publish Changelog
|
||||
uses: release-drafter/release-drafter@v5.18.1
|
||||
with:
|
||||
publish: true
|
||||
name: ${{ github.ref_name }}
|
||||
tag: ${{ github.ref }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build Releases
|
||||
uses: goreleaser/goreleaser-action@v2.8.1
|
||||
with:
|
||||
version: latest
|
||||
|
|
|
@ -27,8 +27,4 @@ checksum:
|
|||
snapshot:
|
||||
name_template: "{{ .Tag }}-next"
|
||||
changelog:
|
||||
sort: asc
|
||||
filters:
|
||||
exclude:
|
||||
- '^docs:'
|
||||
- '^test:'
|
||||
skip: true
|
||||
|
|
Loading…
Reference in a new issue