chore: bump ci templates (#181) #95
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
on: | |
push: | |
branches: | |
- feat-multi-module-components | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
id: configure-changelog | |
with: | |
result-encoding: string | |
script: | | |
const changelogTypes = [ | |
{type: "feat", section: "Features", hidden: false}, | |
{type: "chore", section: "Misc", hidden: false}, | |
{type: "fix", section: "BugFixes", hidden: false}, | |
] | |
return JSON.stringify(changelogTypes) | |
- name: release please | |
uses: google-github-actions/[email protected] | |
id: release | |
with: | |
release-type: simple | |
bump-minor-pre-major: true | |
changelog-types: ${{ steps.configure-changelog.outputs.result }} | |
# https://github.com/google-github-actions/release-please-action#github-credentials | |
token: ${{ secrets.VINCENT_PAT }} | |
- uses: actions/checkout@v4 | |
# we need to fetch all history and tags | |
# so we build the proper version | |
with: | |
fetch-depth: 0 | |
if: ${{ steps.release.outputs.release_created }} | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
if: ${{ steps.release.outputs.release_created }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.VINCENT_PAT }} | |
if: ${{ steps.release.outputs.release_created }} |