2021-06-08 18:08:09 +00:00
|
|
|
name: Go
|
|
|
|
|
|
|
|
on:
|
2021-06-08 18:09:14 +00:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
2021-06-08 18:08:09 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-06-08 18:09:14 +00:00
|
|
|
release:
|
2021-06-08 18:08:09 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2022-11-03 03:39:57 +00:00
|
|
|
go-version: 1.18
|
2021-06-08 18:08:09 +00:00
|
|
|
- name: Run GoReleaser
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: latest
|
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|