Initial commit cli tool (#9) #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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 }} |