2024-12-27 14:52:22 +01:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "*"
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v5
|
|
|
|
with:
|
|
|
|
go-version: stable
|
|
|
|
|
|
|
|
- name: Create release
|
|
|
|
uses: goreleaser/goreleaser-action@v6
|
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: "~> v2"
|
|
|
|
args: release --clean
|
|
|
|
env:
|
2024-12-27 21:18:14 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|