mirror of https://github.com/on4kjm/FLEcli.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
493 B
22 lines
493 B
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 }} |