github.com/cayleygraph/cayley@v0.7.7/.goreleaser.yml (about) 1 builds: 2 - main: ./cmd/cayley 3 binary: cayley 4 env: 5 - CGO_ENABLED=0 6 goos: 7 - linux 8 - darwin 9 - windows 10 goarch: 11 - amd64 12 - "386" 13 - arm64 14 - arm 15 ignore: 16 - goos: windows 17 goarch: arm 18 - goos: windows 19 goarch: arm64 20 - goos: darwin 21 goarch: arm 22 - goos: darwin 23 goarch: arm64 24 ldflags: 25 - -s -w -X github.com/cayleygraph/cayley/version.Version={{.Version}} -X github.com/cayleygraph/cayley/version.GitHash={{.FullCommit}} -X github.com/cayleygraph/cayley/version.BuildDate={{.Date}} 26 archives: 27 - format: tar.gz 28 format_overrides: 29 - goos: windows 30 format: zip 31 wrap_in_directory: true 32 files: 33 - README.md 34 - LICENSE 35 - AUTHORS 36 - CONTRIBUTORS 37 - configurations/* 38 - data/* 39 checksum: 40 name_template: "checksums.txt" 41 snapshot: 42 name_template: "{{ .Tag }}-dev" 43 changelog: 44 sort: asc 45 filters: 46 exclude: 47 - "^docs:" 48 - "^test:" 49 - "^ci:" 50 snapcrafts: 51 - name: cayley 52 publish: false # TODO(dennwc): enable build when the package is reviewed 53 summary: Open-source graph inspired by Freebase and Google's Knowledge Graph. 54 description: | 55 Cayley is an open-source graph inspired by the graph database behind Freebase and Google's Knowledge Graph. 56 Its goal is to be a part of the developer's toolbox where Linked Data and graph-shaped data 57 (semantic webs, social networks, etc) in general are concerned. 58 grade: stable 59 confinement: strict 60 license: Apache-2.0 61 base: core18 62 apps: 63 cayley: 64 plugs: ["home", "network", "network-bind", "personal-files"] 65 plugs: 66 personal-files: 67 read: 68 - $HOME/.cayley 69 write: 70 - $HOME/.cayley