You've already forked go-semantic-release
feat(changelog): show authors of commits and show body as header
Enable new features in `.release.yml` like ```yml changelog: showAuthors: false ## Show authors in changelog showBodyAsHeader: false ## Show all bodies of the commits as header of changelog (useful for squash commit flow to show long text in release) ```
This commit is contained in:
committed by
Felix Wiedmann
parent
03f2eeadaa
commit
0c7338ab13
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@@ -8,7 +8,9 @@ jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
go: ["1.16", "1.17"]
|
||||
go: ["1.17", "1.18"]
|
||||
env:
|
||||
DEFAULT_GO: "1.18"
|
||||
name: Build with go version ${{ matrix.go }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@@ -53,7 +55,7 @@ jobs:
|
||||
docker tag nightapes/go-semantic-release:development-${{matrix.go}} docker.pkg.github.com/nightapes/go-semantic-release/go-semantic-release:development-${{matrix.go}}
|
||||
docker push docker.pkg.github.com/nightapes/go-semantic-release/go-semantic-release:development-${{matrix.go}}
|
||||
- uses: actions/upload-artifact@v1
|
||||
if: matrix.go == '1.17'
|
||||
if: matrix.go == env.DEFAULT_GO
|
||||
with:
|
||||
name: build
|
||||
path: build
|
||||
|
||||
Reference in New Issue
Block a user