This commit is contained in:
Louis Lam 2026-01-13 20:14:53 +08:00
parent 50463ec93c
commit 3d9b029391
2 changed files with 2 additions and 1 deletions

View File

@ -50,6 +50,7 @@ jobs:
git push origin --delete "release-${VERSION}" || true
# Delete locally if it exists
git branch -D "release-${VERSION}" || true
# For testing purpose
git checkout beta-workflow
git checkout -b "release-${VERSION}"

View File

@ -48,7 +48,7 @@ checkDocker();
await checkTagExists(repoNames, version);
// node extra/beta/update-version.js
await import("../beta/update-version.js");
await import("../beta/update-version.mjs");
// Create Pull Request (gh pr create will handle pushing the branch)
await createReleasePR(version, previousVersion, dryRun, branchName, githubRunId);