Skip to content

Commit f26eaee

Browse files
Fix create release branch script
1 parent ba52f4d commit f26eaee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
git checkout -b release-$NEW_VERSION
146146
git push --set-upstream origin release-$NEW_VERSION
147147
# Now that we're done with the interim branch, delete it.
148-
git push -d ${NEW_VERSION}-interim
148+
git push -d origin ${NEW_VERSION}-interim
149149
# Output the release branch name so we can use it in later jobs.
150150
echo "branch_name=release-$NEW_VERSION" >> "$GITHUB_OUTPUT"
151151
# Run all the various tests against the newly created branch.

0 commit comments

Comments
 (0)