61 lines
1.2 KiB
YAML
61 lines
1.2 KiB
YAML
|
env:
|
||
|
- GO111MODULE=on
|
||
|
before:
|
||
|
hooks:
|
||
|
- go mod tidy
|
||
|
builds:
|
||
|
|
||
|
- id: docker
|
||
|
env:
|
||
|
- CGO_ENABLED=0
|
||
|
- GO111MODULE=on
|
||
|
goos:
|
||
|
- linux
|
||
|
goarch:
|
||
|
- amd64
|
||
|
- arm64
|
||
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||
|
flags:
|
||
|
- -trimpath
|
||
|
ldflags:
|
||
|
- -s -w -X github.com/huoxue1/min-report/cmd.Version=v{{.Version}} -X github.com/huoxue1/min-report/cmd.Commit={{.ShortCommit}} -X github.com/huoxue1/min-report/cmd.Date={{.CommitDate}}
|
||
|
|
||
|
|
||
|
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: docker
|
||
|
builds:
|
||
|
- docker
|
||
|
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
||
|
format_overrides:
|
||
|
- goos: windows
|
||
|
format: zip
|
||
|
|
||
|
|
||
|
release:
|
||
|
gitea:
|
||
|
owner: "huoxue1"
|
||
|
name: "min_report"
|
||
|
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
|