Skip to content

breaking out a library #16

breaking out a library

breaking out a library #16

Workflow file for this run

---
name: GoReleaser
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
packages: write
statuses: write
concurrency:
group: |
'${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "^1.22"
cache: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}