-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: add brew * set a GH token for goreleaser the provided GITHUB_TOKEN is not enough if we need to push to another repo (brew tap): https://github.com/goreleaser/goreleaser-action#limitation * set tap name * fix: skip login for completion command * fix: brew completion step * update readme * fix completion props * fix: completion from install formula * Apply suggestions from code review Co-authored-by: Cyril David <[email protected]> * Update README.md Co-authored-by: Rita Zerrizuela <[email protected]> Co-authored-by: Cyril David <[email protected]>
- Loading branch information
1 parent
1ef8cde
commit e109c70
Showing
5 changed files
with
40 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,21 +16,39 @@ builds: | |
- -X github.com/auth0/auth0-cli/internal/buildinfo.BuildUser=goreleaser' | ||
- -X github.com/auth0/auth0-cli/internal/buildinfo.BuildDate={{.Date}}' | ||
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: | ||
- | ||
name: auth0 | ||
tap: | ||
owner: auth0 | ||
name: homebrew-auth0-cli | ||
commit_author: | ||
name: auth0 | ||
email: [email protected] | ||
homepage: https://cli.auth0.com | ||
description: Supercharge your developer workflow. | ||
install: | | ||
bin.install "auth0" | ||
(bash_completion/"auth0").write `#{bin}/auth0 completion bash` | ||
(fish_completion/"auth0.fish").write `#{bin}/auth0 completion fish` | ||
(zsh_completion/"_auth0").write `#{bin}/auth0 completion zsh` | ||
caveats: "Thanks for installing Auth0 CLI" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters