-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Automatic release process (#621)
- Loading branch information
Showing
4 changed files
with
60 additions
and
35 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
name: release-please | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/github-script@v5 | ||
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) | ||
# See https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow | ||
# For why we need to generate a token and not use the default | ||
- name: Generate token | ||
id: generate_token | ||
uses: chanzuckerberg/[email protected] | ||
with: | ||
app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }} | ||
private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }} | ||
|
||
- name: release please | ||
uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
release-type: simple | ||
bump-minor-pre-major: true | ||
changelog-types: ${{ steps.configure-changelog.outputs.result }} | ||
token: ${{ steps.generate_token.outputs.token }} | ||
|
||
- uses: actions/checkout@v2 | ||
# 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@v2 | ||
with: | ||
go-version: 1.17 | ||
if: ${{ steps.release.outputs.release_created }} | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
with: | ||
version: latest | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | ||
if: ${{ steps.release.outputs.release_created }} |
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
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
This file was deleted.
Oops, something went wrong.