Skip to content

Commit 234a294

Browse files
committed
Get experimental releases working
1 parent 3261e08 commit 234a294

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release-experimental.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
SHORT_SHA=$(git rev-parse --short HEAD)
4545
NEXT_VERSION=0.0.0-experimental-${SHORT_SHA}
4646
git checkout -b experimental/${NEXT_VERSION}
47-
pnpm run version ${NEXT_VERSION}
47+
pnpm run version:experimental
4848
git push origin --tags
4949
5050
- name: 🏗 Build

scripts/version.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ async function run() {
7070
let routerVersion = currentRouterVersion;
7171

7272
// 2. Confirm the next version number
73-
let answer = await prompt(
74-
`Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] `
75-
);
73+
// let answer = await prompt(
74+
// `Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] `
75+
// );
7676

77-
if (answer === false) return 0;
77+
// if (answer === false) return 0;
7878

7979
// We only handle @remix-run/router for experimental since in normal/pre
8080
// releases it's versioned independently from the rest of the packages

0 commit comments

Comments
 (0)