Skip to content

fix disabling consumergroup or topic collection #14

fix disabling consumergroup or topic collection

fix disabling consumergroup or topic collection #14

Workflow file for this run

name: GoReleaser
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
workdir: .
env:
CGO_ENABLED: 0
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}