mirror of https://github.com/istio/istio.io.git
make release-1.10.0-dry-run fails finding remote branch (#9741)
This commit is contained in:
parent
ddd2221adc
commit
eb7e128562
|
@ -138,7 +138,10 @@ create_branch_for_new_release() {
|
|||
s/^doc_branch_name: .*$/doc_branch_name: ${NEW_RELEASE_BRANCH}/;
|
||||
" data/args.yml
|
||||
|
||||
UPDATE_BRANCH=${NEW_RELEASE_BRANCH} make update-common
|
||||
# Can only do an update-common against a non dry-run branch
|
||||
if [ "${DRY_RUN}" != '1' ]; then
|
||||
UPDATE_BRANCH=${NEW_RELEASE_BRANCH} make update-common
|
||||
fi
|
||||
|
||||
if [[ $(git status --porcelain) ]]; then
|
||||
git add -A
|
||||
|
|
Loading…
Reference in New Issue