build: ensure consistent usage of getRepo (#44079)
This commit is contained in:
parent
5bdaa42b01
commit
075a297347
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
import { Octokit } from '@octokit/rest';
|
import { Octokit } from '@octokit/rest';
|
||||||
import * as fs from 'node:fs';
|
import * as fs from 'node:fs';
|
||||||
import { createGitHubTokenStrategy } from '../github-token';
|
import { createGitHubTokenStrategy } from '../github-token';
|
||||||
|
import { ELECTRON_REPO, ElectronReleaseRepo, NIGHTLY_REPO } from '../types';
|
||||||
|
|
||||||
if (process.argv.length < 6) {
|
if (process.argv.length < 6) {
|
||||||
console.log('Usage: upload-to-github filePath fileName releaseId');
|
console.log('Usage: upload-to-github filePath fileName releaseId');
|
||||||
|
@ -37,7 +38,11 @@ const getHeaders = (filePath: string, fileName: string) => {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const targetRepo = releaseVersion.indexOf('nightly') > 0 ? 'nightlies' : 'electron';
|
function getRepo (): ElectronReleaseRepo {
|
||||||
|
return releaseVersion.indexOf('nightly') > 0 ? NIGHTLY_REPO : ELECTRON_REPO;
|
||||||
|
}
|
||||||
|
|
||||||
|
const targetRepo = getRepo();
|
||||||
const uploadUrl = `https://uploads.github.com/repos/electron/${targetRepo}/releases/${releaseId}/assets{?name,label}`;
|
const uploadUrl = `https://uploads.github.com/repos/electron/${targetRepo}/releases/${releaseId}/assets{?name,label}`;
|
||||||
let retry = 0;
|
let retry = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue