Skip to content

Fix cask conflict: grove is a formula not a cask #3

Fix cask conflict: grove is a formula not a cask

Fix cask conflict: grove is a formula not a cask #3

Workflow file for this run

name: Release (Go)
on:
push:
tags:
- "v*-go"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go/go.mod
cache-dependency-path: go/go.sum
- name: Run tests
working-directory: go
run: go test ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: "~> v2"
args: release --clean
workdir: go
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}