Skip to content

Commit

Permalink
.github: Add Go Releaser Step (#1100)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueg authored Jun 16, 2021
1 parent 011b7aa commit 91a1b37
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: release

on:
push:
tags:
- v[1-9].*
jobs:
ci-goreleaser:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ~1.16.4
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 91a1b37

Please sign in to comment.