mirror of
https://github.com/on4kjm/FLEcli.git
synced 2025-01-31 06:51:02 +01:00
Reactivate the release action
This commit is contained in:
parent
2ffa1cb89b
commit
499573d8f0
1 changed files with 22 additions and 0 deletions
22
.github/workflows/release.yml
vendored
Normal file
22
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Release with goreleaser
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*.*.*
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
name: goreleaser
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Unshallow Fetch
|
||||
run: git fetch --prune --unshallow
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: '^1.14.3'
|
||||
- name: Release via goreleaser
|
||||
uses: goreleaser/goreleaser-action@master
|
||||
with:
|
||||
args: release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue