Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ branch_to_merge_into="${OVERRIDE_BRANCH:-$BRANCH}"
git fetch origin $branch_to_merge_into
git checkout -B "$branch_to_merge_into" "origin/$branch_to_merge_into"

# Re-source after the checkout so the Node version matches the branches .node-version
source .buildkite/scripts/common/setup_node.sh

old_version=""
store_old_version() {
old_version=$(jq -r '.version' package.json)
Expand Down
Loading