Skip to content

Adding support for multiple AI log parsing providers (#102) #18

Adding support for multiple AI log parsing providers (#102)

Adding support for multiple AI log parsing providers (#102) #18

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
packages: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Set GO_VERSION environment variable
run: echo "GO_VERSION=$(go version | cut -d' ' -f3)" >> $GITHUB_ENV
- name: Run tests
run: make test
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
GO_VERSION: ${{ env.GO_VERSION }}