mirror of
https://github.com/fumiama/RVC-Models-Downloader.git
synced 2024-11-17 13:47:11 +09:00
90 lines
1.5 KiB
YAML
90 lines
1.5 KiB
YAML
project_name: rvcmd
|
|
env:
|
|
- GO111MODULE=on
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
- go generate
|
|
builds:
|
|
- id: linux
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GO111MODULE=on
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 6
|
|
- 7
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
- id: macos
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GO111MODULE=on
|
|
goos:
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
- id: windows
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GO111MODULE=on
|
|
goos:
|
|
- windows
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
|
|
checksum:
|
|
name_template: "rvcmd_checksums.txt"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
- fix typo
|
|
- Merge pull request
|
|
- Merge branch
|
|
- Merge remote-tracking
|
|
- go mod tidy
|
|
|
|
archives:
|
|
- id: all
|
|
builds:
|
|
- linux
|
|
- macos
|
|
- windows
|
|
name_template: "rvcmd_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
nfpms:
|
|
- license: AGPL 3.0
|
|
homepage: https://github.com/RVC-Project/RVC-Models-Downloader
|
|
file_name_template: "rvcmd_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
formats:
|
|
- deb
|
|
- rpm
|
|
maintainer: Fumiama Minamoto
|