CI: goreleaser

This commit is contained in:
raf 2023-10-27 10:55:04 +03:00
parent cf7d1eb0e6
commit e48903db67
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29

38
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,38 @@
name: Go Build & Release CI
on:
workflow_dispatch:
push:
tags:
- "v*"
pull_request:
branch: dev
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
cache: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: success() && startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}