Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary version change in verify_release_build.sh #33873

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions release/src/main/scripts/verify_release_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,6 @@ echo "After PR created, you need to comment phrases listed in description in the

if [[ ! -z `which hub` ]]; then
git checkout -b ${WORKING_BRANCH} origin/${RELEASE_BRANCH} --quiet
# The version change is needed for Dataflow python batch tests.
# Without changing to dev version, the dataflow pipeline will fail because of non-existed worker containers.
# Note that dataflow worker containers should be built after RC has been built.
bash "$SCRIPT_DIR"/set_version.sh "$RELEASE_VER" --git-add
# add a file that will trigger all relevant GHA workflows. Need to be .json extension to be excluded from RAT check
echo "{}" > release/trigger_all_tests.json
git add release/trigger_all_tests.json
Expand Down
Loading