catch gh auth error
parent
a83c3fa523
commit
5365a2de1e
|
|
@ -3728,7 +3728,8 @@ class GithubCliReader {
|
||||||
static GetGitHubAuthToken() {
|
static GetGitHubAuthToken() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
return (yield cloud_runner_system_1.CloudRunnerSystem.Run(`gh auth status -t`))
|
// eslint-disable-next-line github/no-then
|
||||||
|
return ((yield cloud_runner_system_1.CloudRunnerSystem.Run(`gh auth status -t`).catch(() => { })) || '')
|
||||||
.split(`Token: `)[1]
|
.split(`Token: `)[1]
|
||||||
.replace(/ /g, '')
|
.replace(/ /g, '')
|
||||||
.replace(/\n/g, '');
|
.replace(/\n/g, '');
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -4,7 +4,8 @@ import * as core from '@actions/core';
|
||||||
export class GithubCliReader {
|
export class GithubCliReader {
|
||||||
static async GetGitHubAuthToken() {
|
static async GetGitHubAuthToken() {
|
||||||
try {
|
try {
|
||||||
return (await CloudRunnerSystem.Run(`gh auth status -t`))
|
// eslint-disable-next-line github/no-then
|
||||||
|
return ((await CloudRunnerSystem.Run(`gh auth status -t`).catch(() => {})) || '')
|
||||||
.split(`Token: `)[1]
|
.split(`Token: `)[1]
|
||||||
.replace(/ /g, '')
|
.replace(/ /g, '')
|
||||||
.replace(/\n/g, '');
|
.replace(/\n/g, '');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue