1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-09-25 22:55:55 -04:00
amfora/.github/workflows/goreleaser.yml

27 lines
512 B
YAML
Raw Normal View History

2020-09-01 19:21:31 -04:00
name: goreleaser
on:
push:
tags:
- v*
jobs:
goreleaser:
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:
2021-02-17 15:50:32 -05:00
go-version: 1.16
2020-09-01 19:21:31 -04:00
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: 0.x
args: release --rm-dist
env:
2020-09-04 21:38:52 -04:00
GITHUB_TOKEN: ${{ secrets.GH_REPOS }}