77 lines
1.6 KiB
YAML
77 lines
1.6 KiB
YAML
env:
|
|
- GO111MODULE=on
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
builds:
|
|
|
|
- id: nowin
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GO111MODULE=on
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w -X github.com/huoxue1/qinglong-go/service/config.VERSION=v{{.Version}}
|
|
- id: win
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GO111MODULE=on
|
|
goos:
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w -X github.com/huoxue1/qinglong-go/service/config.VERSION.VERSION=v{{.Version}}
|
|
checksum:
|
|
name_template: "{{ .ProjectName }}_checksums.txt"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
- fix typo
|
|
- Merge pull request
|
|
- Merge branch
|
|
- Merge remote-tracking
|
|
- go mod tidy
|
|
|
|
archives:
|
|
- id: binary
|
|
builds:
|
|
- win
|
|
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
format_overrides:
|
|
- goos: windows
|
|
format: binary
|
|
- id: nowin
|
|
builds:
|
|
- nowin
|
|
- win
|
|
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
release:
|
|
gitea:
|
|
owner: "huoxue1"
|
|
name: "qinglong-go"
|
|
name_template: "{{.ProjectName}}-v{{.Version}} {{.Env.USER}}"
|
|
disable: false
|
|
|
|
gitea_urls:
|
|
api: "https://huoxue.link:12300/api/v1"
|
|
download: "https://huoxue.link:12300"
|
|
|
|
force_token: gitea |