doggo/.goreleaser.yml

56 lines
1.1 KiB
YAML
Raw Normal View History

2020-12-18 08:24:57 +01:00
env:
- GO111MODULE=on
- CGO_ENABLED=0
builds:
- binary: doggo
goos:
- windows
- darwin
- linux
goarch:
- amd64
- arm64
goarm:
- 6
- 7
ldflags:
- -s -w -X "main.buildVersion={{ .Tag }} ({{ .ShortCommit }} {{ .Date }})"
dir: ./cmd/doggo/
2020-12-18 08:24:57 +01:00
archives:
- format: tar.gz
files:
- README.md
- LICENSE
2020-12-18 08:25:05 +01:00
snapcrafts:
- name_template: "{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
summary: Command-line DNS client.
description: |
doggo is a command-line DNS client written in Go. It supports protocols like DoH, DoT and output formats like JSON.
grade: stable
confinement: strict
publish: true
2020-12-18 08:24:57 +01:00
dockers:
- image_templates:
- "ghcr.io/mr-karan/doggo:{{ .Tag }}"
- "ghcr.io/mr-karan/doggo:latest"
binaries:
- doggo
dockerfile: Dockerfile
build_flag_templates:
- "--build-arg"
- "ARCH=amd64"
- image_templates:
- "ghcr.io/mr-karan/doggo:{{ .Tag }}-arm64v8"
2020-12-18 08:25:05 +01:00
- "ghcr.io/mr-karan/doggo:latest-arm64v8"
2020-12-18 08:24:57 +01:00
binaries:
- doggo
goarch: arm64
dockerfile: Dockerfile
build_flag_templates:
- "--build-arg"
- "ARCH=arm64v8"