mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-22 14:11:50 +08:00
61 lines
1.3 KiB
YAML
61 lines
1.3 KiB
YAML
before:
|
|
hooks:
|
|
- mkdir -p caddy-build
|
|
- cp cmd/caddy/main.go caddy-build/main.go
|
|
- cp ./go.mod caddy-build/go.mod
|
|
- sed -i.bkp s/github.com\/caddyserver\/caddy\/v2/caddy/g ./caddy-build/go.mod
|
|
# GoReleaser doesn't seem to offer {{.Tag}} at this stage, so we have to embed it into the env
|
|
# so we run: TAG=$(git describe --abbrev=0) goreleaser release --rm-dist --skip-publish --skip-validate
|
|
- go mod edit -require=github.com/caddyserver/caddy/v2@{{.Env.TAG}} ./caddy-build/go.mod
|
|
- git clone --depth 1 https://github.com/caddyserver/dist caddy-dist
|
|
- go mod download
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
- GO111MODULE=on
|
|
main: main.go
|
|
dir: ./caddy-build
|
|
binary: caddy
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
- windows
|
|
- freebsd
|
|
goarch:
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 6
|
|
- 7
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: arm
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
archives:
|
|
- format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
replacements:
|
|
darwin: mac
|
|
checksum:
|
|
algorithm: sha512
|
|
release:
|
|
github:
|
|
owner: caddyserver
|
|
name: caddy
|
|
draft: true
|
|
prerelease: auto
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^chore:'
|
|
- '^ci:'
|
|
- '^docs?:'
|
|
- '^tests?:'
|
|
- '^\w+\s+' # a hack to remove commit messages without colons thus don't correspond to a package
|