-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
42 lines (36 loc) · 1.05 KB
/
Copy path.goreleaser.yml
File metadata and controls
42 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: 2
builds:
- main: ./cmd/aitop/
binary: aitop
ldflags:
- -s -w -X github.com/grippado/aitop/internal/version.Version={{.Version}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
goarch:
- amd64
- arm64
archives:
- format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
checksum:
name_template: checksums.txt
release:
make_latest: true
changelog:
disable: true
# Homebrew tap publishing is disabled until grippado/homebrew-aitop exists and
# HOMEBREW_TAP_GITHUB_TOKEN is set as a repo secret — until then this block
# would fail every release trying to auth with a token that isn't there.
# brews:
# - repository:
# owner: grippado
# name: homebrew-aitop
# token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
# homepage: https://github.com/grippado/aitop
# description: "A live, read-only TUI monitor for AI coding agents (Claude Code, Codex CLI, Cursor) and their contexts"
# license: MIT
# install: |
# bin.install "aitop"