build: log uploads to GitHub (#40034)
This commit is contained in:
parent
f628ce67dd
commit
43a646ed85
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,8 @@ import { Octokit } from '@octokit/rest';
|
||||||
import * as fs from 'node:fs';
|
import * as fs from 'node:fs';
|
||||||
|
|
||||||
const octokit = new Octokit({
|
const octokit = new Octokit({
|
||||||
auth: process.env.ELECTRON_GITHUB_TOKEN
|
auth: process.env.ELECTRON_GITHUB_TOKEN,
|
||||||
|
log: console
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!process.env.CI) require('dotenv-safe').load();
|
if (!process.env.CI) require('dotenv-safe').load();
|
||||||
|
|
Loading…
Reference in a new issue