Introduce new auto-updating staging channel
This commit is contained in:
parent
4038d781d6
commit
038ec9e05d
6 changed files with 117 additions and 2 deletions
|
@ -20,6 +20,9 @@ export const isBeta = (version: string): boolean =>
|
|||
export const isAlpha = (version: string): boolean =>
|
||||
semver.parse(version)?.prerelease[0] === 'alpha';
|
||||
|
||||
export const isStaging = (version: string): boolean =>
|
||||
semver.parse(version)?.prerelease[0] === 'staging';
|
||||
|
||||
export const generateAlphaVersion = (options: {
|
||||
currentVersion: string;
|
||||
shortSha: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue