mirror of
https://codeberg.org/scip/diceware.git
synced 2025-12-16 18:30:58 +01:00
Co-authored-by: scip <scip@noreply.codeberg.org> Co-committed-by: scip <scip@noreply.codeberg.org>
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
|
|
|
|
version: 2
|
|
|
|
gitea_urls:
|
|
api: https://codeberg.org/api/v1
|
|
download: https://codeberg.org
|
|
|
|
builds:
|
|
- builder: prebuilt
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
goamd64:
|
|
- v1
|
|
prebuilt:
|
|
path: output/mybin_{{ .Os }}_{{ .Arch }}{{ with .Amd64 }}_{{ . }}{{ end }}/mybin
|
|
binary: bin/mybin
|
|
|
|
archives:
|
|
- formats: [binary]
|
|
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 }}_{{ .Tag }}
|
|
wrap_in_directory: true
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
groups:
|
|
- title: Improved
|
|
regexp: '^.*?(feat|add|new)(\([[:word:]]+\))??!?:.+$'
|
|
order: 0
|
|
- title: Fixed
|
|
regexp: '^.*?(bug|fix)(\([[:word:]]+\))??!?:.+$'
|
|
order: 1
|
|
- title: Changed
|
|
order: 999
|
|
|
|
release:
|
|
header: "# Release Notes"
|
|
footer: >-
|
|
|
|
---
|
|
|
|
Full Changelog: [{{ .PreviousTag }}...{{ .Tag }}](https://codeberg.org/scip/diceware/compare/{{ .PreviousTag }}...{{ .Tag }})
|