Skip to content

Commit

Permalink
build: log uploads to GitHub (#40034)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkleinsc committed Sep 28, 2023
1 parent f628ce6 commit 43a646e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/release/uploaders/upload-to-github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 43a646e

Please sign in to comment.