Skip to content

Commit

Permalink
Get experimental releases working
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Jun 27, 2024
1 parent ef611a9 commit 3ce8d73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ${NEXT_VERSION}
pnpm run version:experimental
git push origin --tags
- name: 🏗 Build
Expand Down
8 changes: 4 additions & 4 deletions scripts/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ce8d73

Please sign in to comment.