Skip to content

fix&bring the CI update to date, document the release workflow #29

fix&bring the CI update to date, document the release workflow

fix&bring the CI update to date, document the release workflow #29

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: write
jobs:
goreleaser:
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: 1.23.2
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: 'latest'
args: build --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}