Skip to content

Commit f68259c

Browse files
committed
fix: remove alpha check in ci
1 parent 37ea1f2 commit f68259c

2 files changed

Lines changed: 0 additions & 10 deletions

File tree

packages/utils/src/bump-versions.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ if (!version) {
4646
process.exit(1);
4747
}
4848

49-
if (!version.includes('alpha')) {
50-
console.error('Please set the VERSION environment variable to an alpha version.');
51-
process.exit(1);
52-
}
53-
5449
if (!startPath) {
5550
console.error('Please set the START_PATH environment variable.');
5651
process.exit(1);

packages/utils/src/release.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ if (!version) {
2828
process.exit(1);
2929
}
3030

31-
if (!version.includes('alpha')) {
32-
console.error('Please set the VERSION environment variable to an alpha version.');
33-
process.exit(1);
34-
}
35-
3631
if (!startPath) {
3732
console.error('Please set the START_PATH environment variable.');
3833
process.exit(1);

0 commit comments

Comments
 (0)