-
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
bde231a
commit 3ec97fe
Showing
1 changed file
with
6 additions
and
4 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 |
---|---|---|
|
@@ -28,9 +28,6 @@ jobs: | |
- run: | ||
name: Transform Formula Template | ||
command: | | ||
# git config user.email "$GH_EMAIL" | ||
# git config user.name "$GH_NAME" | ||
export WEBHOOK_VERSION=$("<< pipeline.trigger_parameters.webhook.body >>" | jq .version) | ||
echo "Apply requested context to template:" | ||
|
@@ -40,10 +37,15 @@ jobs: | |
cat ./Formula/parra-cli.rb | ||
git config credential.helper 'cache --timeout=120' | ||
git config user.email "$GH_EMAIL" | ||
git config user.name "$GH_NAME" | ||
git add --all | ||
git commit -m "Parra CLI version $WEBHOOK_VERSION" | ||
git push [email protected]:Parra-Inc/tap.git main | ||
# Quiet push so key isn't shown in logs | ||
git push -q [email protected]:Parra-Inc/tap.git main | ||
workflows: | ||
update-cli-formula-workflow: | ||
|