Skip to content

dryrun

dryrun #4

Workflow file for this run

name: dryrun
on:
workflow_dispatch:
jobs:
goreleaser-dryrun:
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.22.1
- name: Release CLI (GoReleaser)
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean --skip=publish --snapshot
env:
GITHUB_TOKEN: ${{ github.token }}
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.GIT_COMMITTER_TOKEN }}