64 lines
1.0 KiB
YAML
64 lines
1.0 KiB
YAML
project_name: dir2opds
|
|
env:
|
|
- GO111MODULE=on
|
|
- GOPROXY=https://proxy.golang.org
|
|
before:
|
|
hooks:
|
|
- go mod download
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
flags:
|
|
- -buildmode
|
|
- exe
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
- windows
|
|
- freebsd
|
|
- netbsd
|
|
- openbsd
|
|
- dragonfly
|
|
goarch:
|
|
- amd64
|
|
- 386
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 7
|
|
- 6
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: 386
|
|
|
|
archives:
|
|
-
|
|
id: "dir2opds"
|
|
builds: ['dir2opds']
|
|
format: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
replacements:
|
|
amd64: 64bit
|
|
386: 32bit
|
|
arm: ARM
|
|
arm64: ARM64
|
|
darwin: macOS
|
|
linux: Linux
|
|
windows: Windows
|
|
openbsd: OpenBSD
|
|
netbsd: NetBSD
|
|
freebsd: FreeBSD
|
|
dragonfly: DragonFlyBSD
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
name_template: "{{ .Tag }}-next"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:'
|