Release #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
Release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Go Semantic Release | |
uses: go-semantic-release/[email protected] | |
id: semrel | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
changelog-file: "CHANGELOG.md" | |
changelog-generator-opt: "emojis=true" | |
force-bump-patch-version: true | |
prepend: true | |
- name: Git Commit Changelog | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "docs(changelog): update cl & ver after release" | |
file_pattern: CHANGELOG.md |