mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
855cca9368
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.
79 lines
1.5 KiB
YAML
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 |