2026-02-27 18:27:06 +03:00
|
|
|
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
|
|
|
|
version: 2
|
2025-01-03 07:08:49 +03:00
|
|
|
|
|
|
|
|
builds:
|
2026-02-27 18:27:06 +03:00
|
|
|
- main: ./cmd/kit
|
|
|
|
|
binary: kit
|
2026-02-27 10:42:27 +03:00
|
|
|
env:
|
2025-01-03 07:08:49 +03:00
|
|
|
- CGO_ENABLED=0
|
|
|
|
|
goos:
|
2026-02-27 18:27:06 +03:00
|
|
|
- darwin
|
2025-01-03 07:08:49 +03:00
|
|
|
- linux
|
|
|
|
|
- windows
|
|
|
|
|
goarch:
|
|
|
|
|
- amd64
|
|
|
|
|
- arm64
|
|
|
|
|
ldflags:
|
2026-02-27 18:27:06 +03:00
|
|
|
- -s -w
|
|
|
|
|
- -X main.version={{.Version}}
|
|
|
|
|
- -X main.commit={{.Commit}}
|
|
|
|
|
- -X main.date={{.Date}}
|
2025-01-03 07:08:49 +03:00
|
|
|
|
|
|
|
|
archives:
|
2026-02-27 18:27:06 +03:00
|
|
|
- formats: [tar.gz]
|
|
|
|
|
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
|
2025-01-03 07:08:49 +03:00
|
|
|
format_overrides:
|
|
|
|
|
- goos: windows
|
2026-02-27 18:27:06 +03:00
|
|
|
formats: [zip]
|
2025-01-03 07:08:49 +03:00
|
|
|
|
|
|
|
|
checksum:
|
2026-02-27 18:27:06 +03:00
|
|
|
name_template: checksums.txt
|
|
|
|
|
|
|
|
|
|
release:
|
|
|
|
|
header: |
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Bun / npm
|
|
|
|
|
bun add -g @mark3labs/kit
|
|
|
|
|
# or: npm install -g @mark3labs/kit
|
|
|
|
|
|
|
|
|
|
# Go install (requires Go 1.26+)
|
|
|
|
|
go install github.com/mark3labs/kit/cmd/kit@latest
|
|
|
|
|
|
|
|
|
|
# Or download from assets below
|
|
|
|
|
```
|
2025-01-03 07:08:49 +03:00
|
|
|
|
|
|
|
|
changelog:
|
|
|
|
|
sort: asc
|
2026-02-27 18:27:06 +03:00
|
|
|
use: github
|
2025-01-03 07:08:49 +03:00
|
|
|
filters:
|
|
|
|
|
exclude:
|
2026-02-27 18:27:06 +03:00
|
|
|
- "^Merge"
|
|
|
|
|
- "^merge"
|
|
|
|
|
- "^wip"
|
|
|
|
|
- "^WIP"
|
|
|
|
|
groups:
|
|
|
|
|
- title: "Features"
|
|
|
|
|
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
|
|
|
|
|
order: 0
|
|
|
|
|
- title: "Bug Fixes"
|
|
|
|
|
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
|
|
|
|
|
order: 1
|
|
|
|
|
- title: "Documentation"
|
|
|
|
|
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
|
|
|
|
|
order: 2
|
|
|
|
|
- title: "Maintenance"
|
|
|
|
|
regexp: '^.*?(chore|refactor|style|ci|build)(\([[:word:]]+\))??!?:.+$'
|
|
|
|
|
order: 3
|
|
|
|
|
- title: "Other Changes"
|
|
|
|
|
order: 999
|