fleet/orbit/.goreleaser.yml
Zach Wasserman 855cca9368
Update notarization to use notarytool (#7962)
Updating from github.com/mitchellh/gon (old API) to the newer xcrun notarytool.

See https://github.com/fleetdm/fleet/actions/runs/3132173324/jobs/5084249006 for example run.
2022-09-27 08:25:42 -07:00

79 lines
1.5 KiB
YAML

project_name: orbit
before:
hooks:
- go mod download
builds:
- id: orbit
dir: ./orbit/cmd/orbit/
binary: orbit
env:
- CGO_ENABLED=0
goos:
- linux
- windows
goarch:
- amd64
flags:
- -trimpath
ldflags:
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Version={{.Version}}
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Commit={{.Commit}}
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Date={{.Date}}
- id: orbit-macos
dir: ./orbit/cmd/orbit/
binary: orbit
env:
- CGO_ENABLED=0
goos:
- darwin
goarch:
- amd64
- arm64
flags:
- -trimpath
ldflags:
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Version={{.Version}}
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Commit={{.Commit}}
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Date={{.Date}}
universal_binaries:
- replace: true
id: orbit-macos
hooks:
post: ./orbit/tools/build/sign-macos.sh {{ .Path }}
archives:
- id: orbit
builds:
- orbit
name_template: orbit_{{.Version}}_{{.Os}}
replacements:
darwin: macos
format_overrides:
- goos: windows
format: zip
- id: orbit-macos
builds:
- orbit-macos
name_template: orbit_{{.Version}}_macos
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-untagged"
changelog:
skip: true
release:
github:
owner: fleetdm
name: fleet
draft: true
name_template: "orbit-{{ .Tag }}"
prerelease: auto