Skip to content

Workflow file for this run

name: "Build CLI and attach to GitHub release"
on:
release:
types: [published]
workflow_dispatch:
jobs:
build:
name: "Build CLI and attach to GitHub release"
runs-on: ubuntu-latest
steps:
# Checkout the repo
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0
# Setup Go
- name: "Setup Go"
uses: actions/setup-go@v5
with:
go-version: "1.21"
# Print Go version
- run: go version
# Build and release
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --parallelism 2 --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}