mirror of
https://github.com/stryan/mumble-discord-bridge.git
synced 2024-11-01 01:05:41 -04:00
29 lines
586 B
YAML
29 lines
586 B
YAML
|
name: 'CI'
|
||
|
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:
|
||
|
go-version: 1.15
|
||
|
-
|
||
|
name: Run GoReleaser
|
||
|
uses: goreleaser/goreleaser-action@v2
|
||
|
if: startsWith(github.ref, 'refs/tags/')
|
||
|
with:
|
||
|
version: latest
|
||
|
args: release --rm-dist
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|