Skip to content

ci: update github actions (#25) #5

ci: update github actions (#25)

ci: update github actions (#25) #5

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: hashicorp/setup-golang@v1
with:
version-file: go.mod
- uses: goreleaser/goreleaser-action@v4
with:
args: release --rm-dist
env:
GITHUB_TOKEN: ${{secrets.RELEASE_TOKEN}}