xmtop/.goreleaser.yml

37 lines
788 B
YAML
Raw Normal View History

2018-04-09 18:07:36 -07:00
# Build Steps
2018-04-10 21:39:09 -07:00
# 1. Make sure everything builds and runs
# 2. update version number in 'main.go' and 'download.sh'
# 3. commit changes
# 4. tag commit
2018-04-13 09:00:12 -07:00
# 5. export token
# 6. run goreleaser
# 7. delete 'dist' folder
2018-04-10 21:39:09 -07:00
# 8. push changes to GitHub
2018-04-13 09:00:12 -07:00
# 9. update AUR package
2018-04-09 18:07:36 -07:00
builds:
- binary: gotop
goos:
- darwin
- linux
goarch:
- amd64
- 386
2018-04-13 11:23:03 -07:00
- arm
- arm64
goarm:
- 5
- 6
- 7
2018-04-09 18:07:36 -07:00
archive:
2018-04-13 16:14:30 -07:00
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}{{ .Arm }}{{ end }}"
replacements:
arm64: arm8
2018-04-09 18:07:36 -07:00
format: tgz
2018-04-13 16:39:11 -07:00
brew:
github:
owner: cjbassi
name: homebrew-gotop
description: "A terminal based graphical activity monitor inspired by gtop and vtop"
homepage: "https://github.com/cjbassi/gotop"