Skip to content

updated logging (#115) #37

updated logging (#115)

updated logging (#115) #37

Workflow file for this run

name: Beta Release for v1
on:
push:
tags:
- 'v1.[0-9]+.[0-9]+-beta.[0-9]+'
permissions:
contents: write
env:
GO_VERSION: '1.24'
jobs:
release:
name: Beta Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release --clean --config .goreleaser/beta.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}