apg-go/.goreleaser.yaml

99 lines
1.7 KiB
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2021-2024 Winni Neessen <wn@neessen.dev>
#
# SPDX-License-Identifier: CC0-1.0
2024-03-12 20:13:41 +01:00
version: 1
before:
hooks:
2024-03-13 22:42:30 +01:00
- go test -cover -race -shuffle=on
2024-03-12 20:13:41 +01:00
- go mod tidy
- go mod download
- go mod verify
- cp assets/apg-go.ico ./logo.ico
after:
hooks:
- rm ./logo.ico
2024-03-12 20:13:41 +01:00
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
- freebsd
- openbsd
- netbsd
goarch:
- 386
- arm
- arm64
- amd64
- ppc64le
- s390x
2024-03-13 22:42:30 +01:00
- mips
- mips64
- mipsle
- mips64le
goarm:
- 6
2024-03-14 00:29:42 +01:00
- 7
goamd64:
- v1
2024-03-12 20:13:41 +01:00
main: ./cmd/apg
binary: apg
ldflags:
- -w -s -extldflags "-static"
2024-03-12 20:13:41 +01:00
archives:
- format: tar.gz
format_overrides:
- goos: windows
format: zip
changelog:
use: github-native
2024-03-12 20:13:41 +01:00
nfpms:
- vendor: Winni Neessen
homepage: https://github.com/wneessen/apg-go
2024-03-12 20:13:41 +01:00
maintainer: Winni Neessen <wn@neessen.dev>
description: |-
A "Automated Password Generator"-clone written in Go
license: MIT
2024-03-12 20:13:41 +01:00
formats:
- apk
- deb
- rpm
- termux.deb
- archlinux
file_name_template: >-
{{- trimsuffix .ConventionalFileName .ConventionalExtension -}}
{{- if and (eq .Arm "6") (eq .ConventionalExtension ".deb") }}6{{ end -}}
{{- if not (eq .Amd64 "v1")}}{{ .Amd64 }}{{ end -}}
{{- .ConventionalExtension -}}
2024-03-12 20:13:41 +01:00
dmg:
2024-03-14 00:29:42 +01:00
- replace: false
extra_files:
- logo.ico
2024-03-12 20:13:41 +01:00
universal_binaries:
2024-03-14 00:29:42 +01:00
- replace: false
2024-03-12 21:55:08 +01:00
report_sizes: true
signs:
- artifacts: all
2024-03-12 22:05:19 +01:00
stdin: "{{ .Env.GPG_PASSWORD }}"
args: ["-u", "wn@neessen.dev", "--output", "${signature}", "--detach-sign", "${artifact}"]
2024-03-12 21:55:08 +01:00
sboms:
- artifacts: archive
github_urls:
gomod:
mod: mod