Skip to content

Bump versions of Github actions #6

Bump versions of Github actions

Bump versions of Github actions #6

Workflow file for this run

name: release
on:
push:
tags:
- 'v[0-9].[0-9]+.[0-9]+'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Go
uses: actions/[email protected]
with:
go-version-file: 'go.mod'
- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
version: latest
args: release --clean
env:
# GitHub sets the GITHUB_TOKEN secret automatically.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}