mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 12:27:43 +08:00
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
before:
|
|
hooks:
|
|
- go mod tidy
|
|
builds:
|
|
- binary: shiori
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GIN_MODE=release
|
|
tags:
|
|
- netgo
|
|
- osusergo
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- "7"
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: arm
|
|
- goos: windows
|
|
goarch: arm
|
|
- goos: windows
|
|
goarch: arm64
|
|
archives:
|
|
- id: shiori
|
|
name_template: >-
|
|
{{ .ProjectName }}_
|
|
{{- if eq .Os "darwin" }}Darwin{{- else if eq .Os "linux" }}Linux{{- else if eq .Os "windows" }}Windows{{- else }}{{ .Os }}{{ end }}_
|
|
{{- if eq .Arch "amd64" }}x86_64{{- else if eq .Arch "arm64" }}aarch64{{- else }}{{ .Arch }}{{ end }}
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
name_template: "{{ incpatch .Version }}-next"
|
|
changelog:
|
|
sort: asc
|
|
groups:
|
|
- title: Features
|
|
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
|
|
order: 0
|
|
- title: "Fixes"
|
|
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
|
|
order: 1
|
|
- title: "Performance"
|
|
regexp: '^.*?perf(\([[:word:]]+\))??!?:.+$'
|
|
order: 2
|
|
- title: API
|
|
regexp: '^.*?api(\([[:word:]]+\))??!?:.+$'
|
|
order: 3
|
|
- title: Documentation
|
|
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
|
|
order: 4
|
|
- title: "Tests"
|
|
regexp: '^.*?test(\([[:word:]]+\))??!?:.+$'
|
|
order: 5
|
|
- title: CI and Delivery
|
|
regexp: '^.*?ci(\([[:word:]]+\))??!?:.+$'
|
|
order: 6
|
|
- title: Others
|
|
order: 999
|
|
filters:
|
|
exclude:
|
|
- "^deps:"
|
|
- "^chore\\(deps\\):"
|
|
release:
|
|
prerelease: auto
|