- Enabled CGO for release builds so that copy to clipboard does not panic. - Added a prompt to confirm quitting when pressing Esc or Ctrl+C - Fixed the table prompt to not quit app on Esc when invoked with the table command.
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
builds:
|
|
- id: dynamo-browse
|
|
targets:
|
|
- windows_amd64
|
|
- linux_amd64
|
|
- darwin_amd64
|
|
- darwin_arm64
|
|
env:
|
|
- CGO_ENABLED=1
|
|
main: ./cmd/dynamo-browse/.
|
|
binary: dynamo-browse
|
|
archives:
|
|
- id: zip
|
|
builds:
|
|
- dynamo-browse
|
|
wrap_in_directory: true
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
- goos: linux
|
|
format: tar.gz
|
|
- goos: macos
|
|
format: tar.gz
|
|
nfpms:
|
|
- id: package_nfpms
|
|
package_name: audax
|
|
builds:
|
|
- dynamo-browse
|
|
vendor: lmika
|
|
homepage: https://audax.tools/
|
|
maintainer: Leon Mika <lmika@lmika.org>
|
|
description: TUI tools for AWS administration
|
|
license: MIT
|
|
formats:
|
|
- deb
|
|
- rpm
|
|
bindir: /usr/local/bin
|
|
brews:
|
|
- name: audax
|
|
tap:
|
|
owner: lmika
|
|
name: homebrew-audax
|
|
token: "{{ .Env.HOMEBREW_GITHUB_TOKEN }}"
|
|
folder: Formula
|
|
homepage: https://audax.tools
|
|
description: TUI tools for AWS administration
|
|
license: MIT
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
name_template: "{{ .Tag }}-next"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:' |