Skip to content

refactor: update import paths and install command #24

refactor: update import paths and install command

refactor: update import paths and install command #24

Workflow file for this run

name: GoReleaser
on:
push:
tags:
- "*"
permissions:
contents: write
packages: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23.2
- name: Clean dist directory
run: rm -rf dist
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.8.1
with:
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}