Skip to content

Commit

Permalink
chore: add brew
Browse files Browse the repository at this point in the history
  • Loading branch information
jfatta committed Feb 26, 2021
1 parent d0d5dd2 commit 3927fc2
Showing 1 changed file with 47 additions and 21 deletions.
68 changes: 47 additions & 21 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,57 @@
# Documentation at http://goreleaser.com
builds:
- main: ./cmd/auth0
env:
- CGO_ENABLED=0
goarch:
- amd64
goos:
- darwin
- linux
- windows
binary: auth0
- main: ./cmd/auth0
env:
- CGO_ENABLED=0
goarch:
- amd64
goos:
- darwin
- linux
- windows
binary: auth0
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
files:
- none*
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
files:
- none*
checksum:
name_template: 'checksums.txt'
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-SNAPSHOT-{{.ShortCommit}}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- "^docs:"
- "^test:"
brews:
-
tap:
owner: auth0
name: homebrew-auth0-cli
commit_author:
name: auth0
email: [email protected]
homepage: https://cli.auth0.com
description: Auth0 CLI
install: |
bin.install "auth0"
rm Dir["#{bin}/{auth0-completion.bash,auth0-completion.zsh}"]
system bin/"auth0", "completion", "--shell", "bash"
system bin/"auth0", "completion", "--shell", "zsh"
bash_completion.install "auth0-completion.bash"
zsh_completion.install "auth0-completion.zsh"
(zsh_completion/"_auth0").write <<~EOS
#compdef auth0
_auth0 () {
local e
e=$(dirname ${funcsourcetrace[1]%:*})/auth0-completion.zsh
if [[ -f $e ]]; then source $e; fi
}
EOS
caveats: "Thanks for installing Auth0 CLI"

0 comments on commit 3927fc2

Please sign in to comment.