mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-24 09:02:26 +02:00
69 lines
1.1 KiB
YAML
69 lines
1.1 KiB
YAML
project_name: pocketbase
|
|
|
|
dist: .builds
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
# used only for tests
|
|
- id: build_cgo
|
|
main: ./examples/base
|
|
binary: pocketbase
|
|
ldflags:
|
|
- -s -w -X github.com/pocketbase/pocketbase.Version={{ .Version }}
|
|
env:
|
|
- CGO_ENABLED=1
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
|
|
- id: build_noncgo
|
|
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
|
|
- arm
|
|
goarm:
|
|
- 7
|
|
ignore:
|
|
- goos: windows
|
|
goarch: arm
|
|
- goos: darwin
|
|
goarch: arm
|
|
|
|
release:
|
|
draft: true
|
|
|
|
archives:
|
|
- id: archive_noncgo
|
|
builds: [build_noncgo]
|
|
format: zip
|
|
files:
|
|
- LICENSE*
|
|
- CHANGELOG*
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
|
|
snapshot:
|
|
name_template: '{{ incpatch .Version }}-next'
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^examples:'
|
|
- '^ui:'
|