Skip to content

Use a special token, since the default isn't permissive enough or too… #6

Use a special token, since the default isn't permissive enough or too…

Use a special token, since the default isn't permissive enough or too… #6

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- "**"
jobs:
release:
name: Release
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
check-latest: true
- name: Release
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.PACKAGES_TOKEN }}