mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
38 lines
639 B
YAML
38 lines
639 B
YAML
version: 1
|
|
|
|
before:
|
|
hooks:
|
|
# You may remove this if you don't use go modules.
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
main: ./bin/memos
|
|
binary: memos
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
|
|
archives:
|
|
- format: tar.gz
|
|
# this name template makes the OS and Arch compatible with the results of `uname`.
|
|
name_template: >-
|
|
{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
|
|
checksum:
|
|
disable: true
|
|
|
|
release:
|
|
draft: true
|
|
replace_existing_draft: true
|
|
make_latest: true
|
|
mode: replace
|
|
skip_upload: false
|