diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..c973ab40 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,36 @@ +name: Release + +on: + push: + tags: + - "v*" + +permissions: + contents: write + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version-file: server/go.mod + cache-dependency-path: server/go.sum + + - name: Run tests + run: cd server && go test ./... + + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v6 + with: + version: "~> v2" + args: release --clean + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index 8a8eedd5..d9c40de0 100644 --- a/.gitignore +++ b/.gitignore @@ -24,7 +24,6 @@ server/bin/ server/tmp/ server/migrate server/daemon -server/multica-cli server/multica # Test artifacts diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 00000000..abb885ec --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,58 @@ +version: 2 + +project_name: multica + +before: + hooks: + - cd server && go mod tidy + +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/super-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" diff --git a/Makefile b/Makefile index 07d3213b..811c8637 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) build: cd server && go build -o bin/server ./cmd/server - cd server && go build -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT)" -o bin/multica-cli ./cmd/multica + cd server && go build -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT)" -o bin/multica ./cmd/multica test: $(REQUIRE_ENV) diff --git a/server/cmd/multica/cmd_agent.go b/server/cmd/multica/cmd_agent.go index 670c8c11..64cf6b04 100644 --- a/server/cmd/multica/cmd_agent.go +++ b/server/cmd/multica/cmd_agent.go @@ -59,7 +59,7 @@ func newAPIClient(cmd *cobra.Command) (*cli.APIClient, error) { workspaceID := resolveWorkspaceID(cmd) if serverURL == "" { - return nil, fmt.Errorf("server URL not set: use --server-url flag, MULTICA_SERVER_URL env, or 'multica-cli config set server_url '") + return nil, fmt.Errorf("server URL not set: use --server-url flag, MULTICA_SERVER_URL env, or 'multica config set server_url '") } return cli.NewAPIClient(serverURL, workspaceID), nil diff --git a/server/cmd/multica/cmd_version.go b/server/cmd/multica/cmd_version.go index 99c7fb7a..da557872 100644 --- a/server/cmd/multica/cmd_version.go +++ b/server/cmd/multica/cmd_version.go @@ -10,6 +10,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print version information", Run: func(_ *cobra.Command, _ []string) { - fmt.Printf("multica-cli %s (commit: %s)\n", version, commit) + fmt.Printf("multica %s (commit: %s)\n", version, commit) }, } diff --git a/server/cmd/multica/main.go b/server/cmd/multica/main.go index 1b06c9e8..98aef2b5 100644 --- a/server/cmd/multica/main.go +++ b/server/cmd/multica/main.go @@ -12,9 +12,9 @@ var ( ) var rootCmd = &cobra.Command{ - Use: "multica-cli", + Use: "multica", Short: "Multica CLI — local agent runtime and management tool", - Long: "multica-cli manages local agent runtimes and provides control commands for the Multica platform.", + Long: "multica manages local agent runtimes and provides control commands for the Multica platform.", SilenceUsage: true, SilenceErrors: true, }