1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-24 17:07:00 +02:00
pocketbase/.goreleaser.yaml
2022-07-11 10:26:55 +03:00

46 lines
635 B
YAML

project_name: pocketbase
dist: .builds
before:
hooks:
- go mod tidy
builds:
- main: ./examples/base
binary: pocketbase
ldflags:
- -s -w -X github.com/pocketbase/pocketbase.Version={{ .Version }}
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
release:
draft: true
archives:
-
format: zip
files:
- LICENSE*
- CHANGELOG*
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^examples:'
- '^ui:'