diff --git a/.github/workflows/release-experimental.yml b/.github/workflows/release-experimental.yml index 9286d6b720..f69d4dd500 100644 --- a/.github/workflows/release-experimental.yml +++ b/.github/workflows/release-experimental.yml @@ -44,7 +44,7 @@ jobs: SHORT_SHA=$(git rev-parse --short HEAD) NEXT_VERSION=0.0.0-experimental-${SHORT_SHA} git checkout -b experimental/${NEXT_VERSION} - pnpm run version:experimental + pnpm run version ${NEXT_VERSION} git push origin --tags - name: 🏗 Build diff --git a/scripts/version.js b/scripts/version.js index 7b71a3d1e7..89c33ce101 100644 --- a/scripts/version.js +++ b/scripts/version.js @@ -70,11 +70,11 @@ async function run() { let routerVersion = currentRouterVersion; // 2. Confirm the next version number - // let answer = await prompt( - // `Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] ` - // ); + let answer = await prompt( + `Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] ` + ); - // if (answer === false) return 0; + if (answer === false) return 0; // We only handle @remix-run/router for experimental since in normal/pre // releases it's versioned independently from the rest of the packages