-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes to Dockerhub release tagging (#1777)
Signed-off-by: bndw <[email protected]>
- Loading branch information
1 parent
8a95827
commit 7789c5d
Showing
2 changed files
with
16 additions
and
0 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 |
---|---|---|
|
@@ -2,6 +2,12 @@ | |
|
||
set -e | ||
|
||
if [ -n "$CIRCLE_TAG" ] | ||
then | ||
echo 'Ignoring build for git tag event' | ||
exit 0 | ||
fi | ||
|
||
# bazel uses jgit internally and the default circle-ci .gitconfig says to | ||
# convert https://github.com to ssh://[email protected], which jgit does not support. | ||
mv ~/.gitconfig ~/.gitconfig_save | ||
|
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