Skip to content

chore: bump version to 1.0.1 #4

chore: bump version to 1.0.1

chore: bump version to 1.0.1 #4

Workflow file for this run

name: release
on:
push:
# run only against tags
tags:
- '*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
- uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}