fix(deps): update golang.org/x/exp digest to db7319d #12
Workflow file for this run
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: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
permissions: | |
contents: write | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Fetch all tags | |
run: git fetch --force --tags | |
- name: Cleanup pre-release tags | |
run: git tag -l | grep -E "v[0-9]+.[0-9]+.[0-9]+-(alpha|beta|rc).[0-9]+" | xargs git tag -d | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.21.4" | |
- name: Setup workspace | |
run: cp go.work.dist go.work | |
- name: Log in to Docker Hub | |
if: ${{ !contains(github.ref_name, '-') }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Run GoReleaser for release | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: "1.21.2" | |
args: release --debug --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GO_VERSION: "1.21.4" |