Skip to content

Do not load unnecessary package information (#203) #4

Do not load unnecessary package information (#203)

Do not load unnecessary package information (#203) #4

Workflow file for this run

name: goreleaser
on:
push:
tags:
- 'v[0-9]*'
workflow_dispatch:
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
cache: true
check-latest: true
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}