Browse Source

build: log uploads to GitHub (#40034)

John Kleinschmidt 1 year ago
parent
commit
43a646ed85
1 changed files with 2 additions and 1 deletions
  1. 2 1
      script/release/uploaders/upload-to-github.ts

+ 2 - 1
script/release/uploaders/upload-to-github.ts

@@ -2,7 +2,8 @@ import { Octokit } from '@octokit/rest';
 import * as fs from 'node:fs';
 
 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();