Create go-releaser.yml

This commit is contained in:
anonderpling 2023-04-13 23:32:09 +00:00 committed by GitHub
parent 6c6f1b5b60
commit fcfe1d0463
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

31
.github/workflows/go-releaser.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: goreleaser
on:
push:
workflow_dispatch:
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}