The project was previously called "super-multica" but has been renamed to "multica". Update all remaining references in docker-compose, goreleaser, README, and local development docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
54 lines
1 KiB
YAML
54 lines
1 KiB
YAML
version: 2
|
|
|
|
project_name: multica
|
|
|
|
builds:
|
|
- id: multica
|
|
main: ./cmd/multica
|
|
dir: server
|
|
binary: multica
|
|
ldflags:
|
|
- -s -w
|
|
- -X main.version={{.Version}}
|
|
- -X main.commit={{.ShortCommit}}
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
|
|
archives:
|
|
- id: default
|
|
formats:
|
|
- tar.gz
|
|
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
|
|
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
- "^chore:"
|
|
|
|
brews:
|
|
- name: multica
|
|
repository:
|
|
owner: multica-ai
|
|
name: homebrew-tap
|
|
branch: main
|
|
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
|
|
directory: Formula
|
|
homepage: "https://github.com/multica-ai/multica"
|
|
description: "Multica CLI — local agent runtime and management tool for the Multica platform"
|
|
license: "MIT"
|
|
install: |
|
|
bin.install "multica"
|
|
test: |
|
|
system "#{bin}/multica", "version"
|