Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Prepare changelog for 0.24.1 #74

Prepare changelog for 0.24.1

Prepare changelog for 0.24.1 #74

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Add env vars
run: |
echo RELEASE_NOTES_PATH=.changes/${{ github.ref_name }}.md >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: --clean --release-notes=${{ env.RELEASE_NOTES_PATH }} --skip=validate --verbose
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}