1
0
mirror of https://github.com/go-task/task.git synced 2025-02-13 13:59:32 +02:00

GitHub Actions: Add action to run GoReleaser on new tags

This commit is contained in:
Andrey Nering 2020-01-11 21:29:04 -03:00
parent c068b05232
commit 1c9fbf92c6

26
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: goreleaser
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v1
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}