We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b644c commit 26b658fCopy full SHA for 26b658f
dev/create-release/release-tag.sh
@@ -104,7 +104,11 @@ git commit -a -m "Preparing development version $NEXT_VERSION"
104
if ! is_dry_run; then
105
# Push changes
106
git push origin $RELEASE_TAG
107
- git push origin HEAD:$GIT_BRANCH
+ if [[ $RELEASE_VERSION != *"preview"* ]]; then
108
+ git push origin HEAD:$GIT_BRANCH
109
+ else
110
+ echo "It's preview release. We only push $RELEASE_TAG to remote."
111
+ fi
112
113
cd ..
114
rm -rf spark
0 commit comments