소스 검색

switch GITHUB_URL to GITHUB_SERVER_URL (#248)

eric sciple 5 년 전
부모
커밋
7523e23789
2개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 1
      dist/index.js
  2. 6 1
      src/url-helper.ts

+ 4 - 1
dist/index.js

@@ -1400,7 +1400,10 @@ function getFetchUrl(settings) {
 }
 exports.getFetchUrl = getFetchUrl;
 function getServerUrl() {
-    return new url_1.URL(process.env['GITHUB_URL'] || 'https://github.com');
+    // todo: remove GITHUB_URL after support for GHES Alpha is no longer needed
+    return new url_1.URL(process.env['GITHUB_SERVER_URL'] ||
+        process.env['GITHUB_URL'] ||
+        'https://github.com');
 }
 exports.getServerUrl = getServerUrl;
 

+ 6 - 1
src/url-helper.ts

@@ -20,5 +20,10 @@ export function getFetchUrl(settings: IGitSourceSettings): string {
 }
 
 export function getServerUrl(): URL {
-  return new URL(process.env['GITHUB_URL'] || 'https://github.com')
+  // todo: remove GITHUB_URL after support for GHES Alpha is no longer needed
+  return new URL(
+    process.env['GITHUB_SERVER_URL'] ||
+      process.env['GITHUB_URL'] ||
+      'https://github.com'
+  )
 }