Skip to content

test-ci

test-ci #8

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
id-token: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Allow goreleaser to access older tag information.
- name: Run GoReleaser
uses: ./.github/actions/ci/release
with:
go_version: '1.22'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}