Add new release line for testing

This commit is contained in:
Fedor Indutny
2024-11-20 19:14:21 -08:00
committed by GitHub
parent 70dd062753
commit 34cc87e8a8
17 changed files with 199 additions and 43 deletions

View File

@@ -27,7 +27,7 @@ import * as Errors from '../types/errors';
import { strictAssert } from '../util/assert';
import { drop } from '../util/drop';
import * as durations from '../util/durations';
import { isAlpha, isBeta, isStaging } from '../util/version';
import { isAlpha, isAxolotl, isBeta, isStaging } from '../util/version';
import * as packageJson from '../../package.json';
import type { SettingsChannel } from '../main/settingsChannel';
@@ -912,6 +912,9 @@ function getChannel(): string {
if (isAlpha(version)) {
return 'alpha';
}
if (isAxolotl(version)) {
return 'axolotl';
}
if (isBeta(version)) {
return 'beta';
}