-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcdedb0
commit 3a2c007
Showing
1 changed file
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ orbs: | |
node: circleci/[email protected] | ||
|
||
jobs: | ||
# Invoked by incoming webhook by SDKs repo. It is expected that new SDK versions have been created and | ||
# this script handles updating the Homebrew Formula and pushing it back to the tap repo. | ||
update-cli-formula: | ||
docker: | ||
- image: cimg/base:current | ||
|
@@ -37,11 +39,11 @@ jobs: | |
cat ./Formula/parra-cli.rb | ||
export GIT_AUTHOR_NAME="$GH_NAME" | ||
export GIT_AUTHOR_NAME="$GH_USER" | ||
export GIT_AUTHOR_EMAIL="$GH_EMAIL" | ||
git config credential.helper 'cache --timeout=120' | ||
git config --global user.name "$GH_NAME" | ||
git config --global user.name "$GH_USER" | ||
git config --global user.email "$GH_EMAIL" | ||
git add --all | ||
|