Skip to content

Initial commit cli tool (#9) #1

Initial commit cli tool (#9)

Initial commit cli tool (#9) #1

Workflow file for this run

# .github/workflows/release.yml
name: goreleaser
on:
push:
paths:
- 'cli/**'
# run only against tags
tags:
- "*"
permissions:
contents: write
# packages: write # write if you push Docker images to GitHub
# issues: write # write if you use milestone closing capability
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: stable
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: "~> v1"
args: release --clean
workdir: cli
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}