Skip to content

Refactor master package for improved clarity and maintainability #2

Refactor master package for improved clarity and maintainability

Refactor master package for improved clarity and maintainability #2

Workflow file for this run

name: Release
on:
push:
tags: [ 'v*.*.*' ]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v7
with:
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}