mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
33 lines
578 B
YAML
33 lines
578 B
YAML
project_name: go-pagerduty
|
|
release:
|
|
github:
|
|
owner: PagerDuty
|
|
name: go-pagerduty
|
|
draft: false
|
|
prerelease: true
|
|
name_template: "{{.ProjectName}}-v{{.Version}}"
|
|
builds:
|
|
- goos:
|
|
- linux
|
|
- darwin
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- 386
|
|
main: ./command/*.go
|
|
binary: pd
|
|
archive:
|
|
format: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
replacements:
|
|
amd64: 64-bit
|
|
darwin: macOS
|
|
linux: Tux
|
|
name_template: "{{.Binary}}_{{.Version}}_{{.Os}}-{{.Arch}}"
|
|
files:
|
|
- LICENSE.txt
|
|
- README.md
|
|
- examples/*
|
|
- CHANGELOG.md |