diff options
author | Matt Holt <[email protected]> | 2020-04-02 18:07:57 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-02 18:07:57 -0600 |
commit | 84f16852abb48b7e9c21ff43fd9040fd9df167fb (patch) | |
tree | 5eaa055752b39ed8dcc2c08ec18716bff46cbff2 | |
parent | 1456f15f9a3981c5b0ca8927f14bccb2c9c12660 (diff) | |
download | caddy-84f16852abb48b7e9c21ff43fd9040fd9df167fb.tar.gz caddy-84f16852abb48b7e9c21ff43fd9040fd9df167fb.zip |
ci: goreleaser: Drop some platforms and replacements (#3217)
Based on download stats, demand for 32-bit binaries these days is
extremely low. Also unify some of the filename conventions; just a
few bikeshedding changes :)
-rw-r--r-- | .goreleaser.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml index 06296546c..e3c78b786 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -23,7 +23,6 @@ builds: - freebsd goarch: - amd64 - - 386 - arm - arm64 goarm: @@ -31,8 +30,6 @@ builds: - 7 ignore: - goos: darwin - goarch: 386 - - goos: darwin goarch: arm flags: - -trimpath @@ -43,11 +40,7 @@ archives: - goos: windows format: zip replacements: - darwin: macOS - linux: Linux - windows: Windows - 386: i386 - amd64: x86_64 + darwin: mac checksum: algorithm: sha512 release: @@ -60,8 +53,8 @@ changelog: sort: asc filters: exclude: + - '^chore:' - '^ci:' - - '^docs:' + - '^docs?:' - '^test:' - - '^chore:' - '^\w+\s+' # a hack to remove commit messages without colons thus don't correspond to a package |