Skip to content

Refactor agent runtime into reconciler-based architecture #18

Refactor agent runtime into reconciler-based architecture

Refactor agent runtime into reconciler-based architecture #18

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
version:
description: 'Release version (e.g., v1.0.0)'
required: true
type: string
env:
GO_VERSION: '1.24.1'
jobs:
release:
runs-on: ubuntu-latest
environment: Release
permissions:
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Golang
uses: actions/setup-go@v6
with:
go-version: "1.24"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GH_TOKEN }}