mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-14 16:09:32 +01:00
ae704b7db4
* goreleaser version must be specified in .goreleaser.yml * --skip-publish is replaced by --skip=publish
71 lines
1.4 KiB
YAML
71 lines
1.4 KiB
YAML
# .goreleaser.yml
|
|
# Build customization
|
|
version: 2
|
|
project_name: ergo
|
|
builds:
|
|
- main: ergo.go
|
|
env:
|
|
- CGO_ENABLED=0
|
|
binary: ergo
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
- freebsd
|
|
- openbsd
|
|
- plan9
|
|
goarch:
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 6
|
|
ignore:
|
|
- goos: windows
|
|
goarch: arm
|
|
- goos: windows
|
|
goarch: arm64
|
|
- goos: darwin
|
|
goarch: arm
|
|
- goos: freebsd
|
|
goarch: arm
|
|
- goos: freebsd
|
|
goarch: arm64
|
|
- goos: openbsd
|
|
goarch: arm
|
|
- goos: openbsd
|
|
goarch: arm64
|
|
- goos: plan9
|
|
goarch: arm
|
|
- goos: plan9
|
|
goarch: arm64
|
|
flags:
|
|
- -trimpath
|
|
|
|
archives:
|
|
-
|
|
name_template: >-
|
|
{{ .ProjectName }}-{{ .Version }}-
|
|
{{- if eq .Os "darwin" }}macos{{- else }}{{ .Os }}{{ end -}}-
|
|
{{- if eq .Arch "amd64" }}x86_64{{- else }}{{ .Arch }}{{ end -}}
|
|
{{ if .Arm }}v{{ .Arm }}{{ end -}}
|
|
format: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- README
|
|
- CHANGELOG.md
|
|
- LICENSE
|
|
- ergo.motd
|
|
- default.yaml
|
|
- traditional.yaml
|
|
- docs/MANUAL.md
|
|
- docs/USERGUIDE.md
|
|
- languages/*.yaml
|
|
- languages/*.json
|
|
- languages/*.md
|
|
wrap_in_directory: true
|
|
checksum:
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}-checksums.txt"
|