Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: release

on:
push:
tags:
- "v*"

jobs:
goreleaser:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v5

- uses: actions/setup-go@v6
with:
go-version: stable

- uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
28 changes: 13 additions & 15 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
version: 2

project_name: ai-issue
project_name: repl-cli

builds:
- main: ./cmd/ai-issue
- id: repl
main: ./cmd/repl
binary: repl
env:
- CGO_ENABLED=0
goos:
Expand All @@ -13,7 +15,6 @@ builds:
goarch:
- amd64
- arm64
binary: ai-issue
ldflags:
- -s -w
- -X main.version={{.Version}}
Expand All @@ -30,24 +31,21 @@ archives:
files:
- LICENSE
- README.md
- PRODUCT_SPEC.md
- ARCHITECTURE.md
- FRAMEWORK.md
- AGENTS.md
- .repl/product.md
- .repl/framework.md
- .repl/architecture.md

brews:
- name: ai-issue
- name: repl-cli
repository:
owner: replworks
name: homebrew-tap

homepage: "https://github.com/replworks/ai-issue"

description: "A CLI tool to publish AI-generated ideas as GitHub Issues, clearly separating AI authorship from human responsibility."

homepage: "https://github.com/replworks/repl-cli"
description: "A deterministic runtime controller for external AI-driven task execution."
license: "MIT"

install: |
bin.install "ai-issue"
bin.install "repl"

checksum:
name_template: "checksums.txt"
Expand All @@ -65,6 +63,6 @@ changelog:
release:
github:
owner: replworks
name: ai-issue
name: repl-cli
draft: true
prerelease: auto