You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/07/03 09:59:51 UTC

[camel-k-runtime] branch main updated: fix: set upstream for push

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/main by this push:
     new 4d884b02 fix: set upstream for push
4d884b02 is described below

commit 4d884b02b6424730244aeee510864f695b41c10f
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Mon Jul 3 11:59:46 2023 +0200

    fix: set upstream for push
---
 scripts/release-branch.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/release-branch.sh b/scripts/release-branch.sh
index 726441fd..44341ed0 100755
--- a/scripts/release-branch.sh
+++ b/scripts/release-branch.sh
@@ -52,7 +52,7 @@ main() {
   else
     git add --all
     git commit -m "chore: starting release branch for $new_release_branch" || true
-    git push
+    git push --set-upstream origin $new_release_branch
     echo "🎉 Changes pushed correctly!"
   fi
 }