Merge pull request #371 from moul/dependabot/github_actions/JasonEtco… #303
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: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
release: | |
name: releaser | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
golang: [1.20.x] | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Unshallow | |
run: git fetch --prune --unshallow | |
- | |
uses: moul/repoman-action@v1 | |
id: repoman | |
- | |
name: Run Semantic Release | |
id: semantic | |
uses: docker://ghcr.io/codfish/semantic-release-action:v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Set up Go | |
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true' | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.golang }} | |
- | |
name: Cache Go modules | |
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true' | |
uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1- | |
- | |
name: Run GoReleaser | |
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true' | |
uses: goreleaser/[email protected] | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Register version on pkg.go.dev | |
if: steps.semantic.outputs.new-release-published == 'true' | |
run: | | |
package=$(cat go.mod | grep ^module | awk '{print $2}') | |
version=v${{ steps.semantic.outputs.release-version }} | |
url=https://proxy.golang.org/${package}/@v/${version}.info | |
set -x +e | |
curl -i $url |