github.com/blend/go-sdk@v1.20220411.3/.goreleaser/shamir.yml (about) 1 # 2 # Copyright (c) 2021 - Present. Blend Labs, Inc. All rights reserved 3 # Use of this source code is governed by a MIT license that can be found in the LICENSE file. 4 # 5 # 6 # Copyright (c) 2021 - Present. Blend Labs, Inc. All rights reserved 7 # Use of this source code is governed by a MIT license that can be found in the LICENSE file. 8 # 9 project_name: shamir 10 builds: 11 - main: "./cmd/shamir/main.go" 12 binary: shamir 13 env: 14 - CGO_ENABLED=0 15 goos: 16 - darwin 17 - linux 18 - windows 19 goarch: 20 - amd64 21 - arm 22 - arm64 23 24 archive: 25 name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" 26 format: "tar.gz" 27 format_overrides: 28 - goos: windows 29 format: zip 30 files: 31 - none* 32 33 brew: 34 name: shamir 35 github: 36 owner: blend 37 name: homebrew-tap 38 folder: Formula 39 commit_author: 40 name: baileydog 41 email: baileydog@blend.com 42 homepage: "https://github.com/blend/go-sdk/tree/master/cmd/shamir/README.md" 43 description: "Split secrets according to the shamir secure sharing scheme" 44 45 dist: dist/shamir 46 47 checksum: 48 name_template: '{{ .ProjectName }}_checksums.txt' 49 50 snapshot: 51 name_template: "{{ .ProjectName }}_SNAPSHOT_{{ .Commit }}"