ci(actions): release action

This commit is contained in:
iyear 2022-09-04 23:45:37 +08:00
parent 5ea5ebd55b
commit c46452b801

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

@ -0,0 +1,34 @@
name: release
on:
workflow_dispatch:
push:
tags:
- '*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
cache: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}