Skip to content

Modified the version #36

Modified the version

Modified the version #36

Workflow file for this run

# From: https://goreleaser.com/ci/actions/#usage
name: release
env:
GO111MODULE: on
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5.0.2
with:
go-version: 1.22
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6.0.0
with:
distribution: goreleaser
version: latest
args: release --clean --verbose
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
- name: Syndicate to GoDocs
run: make godocs