Files
golang/.goreleaser.yaml
master db0920502e
All checks were successful
CI / Docker Build (push) Successful in 19s
CI / Test (push) Successful in 3s
CI / Build (push) Successful in 3s
Release / goreleaser (push) Successful in 6s
Release / docker-release (push) Successful in 15s
Update .goreleaser.yaml
2026-01-15 07:59:02 +01:00

53 lines
947 B
YAML

version: 2
project_name: golang-template
gitea_urls:
api: https://git.dcentral.systems/api/v1
download: https://git.dcentral.systems
# set to true if you use a self-signed certificate
skip_tls_verify: false
before:
hooks:
- go mod tidy
builds:
- id: app
env:
- CGO_ENABLED=0
main: ./cmd/app
binary: app
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
archives:
- format: tar.gz
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'