Skip to content

Commit

Permalink
fix: Use correct syntax to push data using git (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvgijssel authored Dec 19, 2023
1 parent 7fba707 commit e0ddb54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ task(
"if [ $CHANGES_TO_COMMIT = false ]; then echo 'Nothing to commit, working tree clean. Exitting.'; exit 0; fi",
"git commit -m 'chore(release_manager): update release files'",
# Disable credential.helper to ensure the passed in token is used
"git -c credential.helper= push --tags https://$GIT_COMMITTER_NAME@[email protected]/vgijssel/setup.git HEAD:master",
"git -c credential.helper= push --tags https://$GIT_COMMITTER_NAME:[email protected]/vgijssel/setup.git HEAD:master",
],
cwd = "$BUILD_WORKSPACE_DIRECTORY",
env = {
Expand Down

0 comments on commit e0ddb54

Please sign in to comment.