You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.3 KiB
106 lines
2.3 KiB
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- id: cursor-id-modifier
|
|
main: ./cmd/cursor-id-modifier/main.go
|
|
binary: cursor-id-modifier
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
- "386"
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: "386"
|
|
ldflags:
|
|
- -s -w
|
|
- -X 'main.version={{.Version}}'
|
|
flags:
|
|
- -trimpath
|
|
mod_timestamp: '{{ .CommitTimestamp }}'
|
|
|
|
archives:
|
|
- id: binary
|
|
format: binary
|
|
name_template: >-
|
|
{{ .Binary }}_
|
|
{{- .Os }}_
|
|
{{- if eq .Arch "amd64" }}x64{{ end }}
|
|
{{- if eq .Arch "386" }}x86{{ end }}
|
|
{{- if eq .Arch "arm64" }}arm64{{ end }}
|
|
{{- if and (eq .Os "darwin") (eq .Arch "amd64") }}_intel{{ end }}
|
|
{{- if and (eq .Os "darwin") (eq .Arch "arm64") }}_apple_silicon{{ end }}
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
algorithm: sha256
|
|
|
|
changelog:
|
|
sort: asc
|
|
use: github
|
|
groups:
|
|
- title: Features
|
|
regexp: "^.*feat[(\\w)]*:+.*$"
|
|
order: 0
|
|
- title: 'Bug fixes'
|
|
regexp: "^.*fix[(\\w)]*:+.*$"
|
|
order: 1
|
|
- title: Others
|
|
order: 999
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:'
|
|
- '^ci:'
|
|
- Merge pull request
|
|
- Merge branch
|
|
|
|
release:
|
|
github:
|
|
owner: dacrab
|
|
name: go-cursor-help
|
|
draft: false
|
|
prerelease: auto
|
|
mode: replace
|
|
header: |
|
|
## Cursor ID Modifier {{ .Version }}
|
|
|
|
### Supported Platforms
|
|
- Windows: x64, x86
|
|
- macOS: Intel (x64), Apple Silicon (M1/M2)
|
|
- Linux: x64, x86, ARM64
|
|
|
|
See [CHANGELOG](CHANGELOG.md) for more details.
|
|
footer: |
|
|
**Full Changelog**: https://github.com/dacrab/go-cursor-help/compare/{{ .PreviousTag }}...{{ .Tag }}
|
|
|
|
## Quick Installation
|
|
|
|
**Linux/macOS**:
|
|
```bash
|
|
curl -fsSL https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.sh | sudo bash
|
|
```
|
|
|
|
**Windows** (PowerShell Admin):
|
|
```powershell
|
|
irm https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.ps1 | iex
|
|
```
|
|
|
|
snapshot:
|
|
name_template: "{{ incpatch .Version }}-next"
|
|
|
|
signs:
|
|
- cmd: gpg
|
|
args:
|
|
- "--output"
|
|
- "${signature}"
|
|
- "--detach-sign"
|
|
- "${artifact}"
|
|
artifacts: checksum
|