-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from planetscale/joem/split-gha-workflows
ci(gha): split ci and release workflows
- Loading branch information
Showing
3 changed files
with
74 additions
and
45 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
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,70 @@ | ||
name: release | ||
|
||
# release process: | ||
# | ||
# on main branch merge: | ||
# 1. Calculate next semantic version tag (autotag) | ||
# 2. invoke goreleaser to build binaries, docker images, and generate GH release with new version tag | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- go.mod | ||
- go.sum | ||
- '**.go' | ||
- .goreleaser.yml | ||
- Dockerfile | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: > | ||
(github.event_name == 'push' && !contains(toJson(github.event.commits), '[ci skip]') && !contains(toJson(github.event.commits), '[skip ci]')) | ||
|| github.event_name == 'workflow_dispatch' | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- run: make lint | ||
- run: make test | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
needs: [test] | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
steps: | ||
- name: checkout code with full history (unshallow) | ||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: install autotag binary | ||
run: | | ||
curl -sL https://git.io/autotag-install | sh -s -- -b "${RUNNER_TEMP}/bin" | ||
- name: Install GoReleaser | ||
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6 | ||
with: | ||
install-only: true | ||
|
||
- name: login to ghcr.io | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: do release | ||
run: make release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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