Skip to content

BUILD/MINOR: go.mod: upgrade client-native and generate #31

BUILD/MINOR: go.mod: upgrade client-native and generate

BUILD/MINOR: go.mod: upgrade client-native and generate #31

Workflow file for this run

name: goreleaser
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# we have to fetch all history to be able to generate the release note. c.f. https://goreleaser.com/ci/actions/.
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
check-latest: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean --skip-announce
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}