Skip to content

Commit

Permalink
Add releaser workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lildude committed Feb 24, 2021
1 parent ba2cf30 commit c0bf616
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Releaser

on:
push:
tags:
- '*'

jobs:
goreleaser:
name: Make Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-go@v2
with:
go-version: '^1.15'
- uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c0bf616

Please sign in to comment.