feat: update dist to remove ghes check
Some checks failed
Check dist/ / check-dist (push) Failing after 2m16s
Licensed / Check licenses (push) Failing after 1m3s
Test Proxy / test-proxy-upload (push) Failing after 1m19s
Test / Build (ubuntu-latest) (push) Failing after 3m56s
Test / Upload HTML Report (push) Failing after 2m7s
Test / Build (macos-latest) (push) Has been cancelled
Test / Build (windows-latest) (push) Has been cancelled
Test / Merge (push) Has been cancelled
Test / Cleanup Artifacts (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Failing after 1h11m42s
Some checks failed
Check dist/ / check-dist (push) Failing after 2m16s
Licensed / Check licenses (push) Failing after 1m3s
Test Proxy / test-proxy-upload (push) Failing after 1m19s
Test / Build (ubuntu-latest) (push) Failing after 3m56s
Test / Upload HTML Report (push) Failing after 2m7s
Test / Build (macos-latest) (push) Has been cancelled
Test / Build (windows-latest) (push) Has been cancelled
Test / Merge (push) Has been cancelled
Test / Cleanup Artifacts (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Failing after 1h11m42s
This commit is contained in:
2
dist/merge/index.js
vendored
2
dist/merge/index.js
vendored
@@ -84918,7 +84918,7 @@ function isGhes() {
|
|||||||
const isGitHubHost = hostname === 'GITHUB.COM';
|
const isGitHubHost = hostname === 'GITHUB.COM';
|
||||||
const isGheHost = hostname.endsWith('.GHE.COM');
|
const isGheHost = hostname.endsWith('.GHE.COM');
|
||||||
const isLocalHost = hostname.endsWith('.LOCALHOST');
|
const isLocalHost = hostname.endsWith('.LOCALHOST');
|
||||||
return !isGitHubHost && !isGheHost && !isLocalHost;
|
return false;
|
||||||
}
|
}
|
||||||
function getGitHubWorkspaceDir() {
|
function getGitHubWorkspaceDir() {
|
||||||
const ghWorkspaceDir = process.env['GITHUB_WORKSPACE'];
|
const ghWorkspaceDir = process.env['GITHUB_WORKSPACE'];
|
||||||
|
|||||||
2
dist/upload/index.js
vendored
2
dist/upload/index.js
vendored
@@ -82493,7 +82493,7 @@ function isGhes() {
|
|||||||
const isGitHubHost = hostname === 'GITHUB.COM';
|
const isGitHubHost = hostname === 'GITHUB.COM';
|
||||||
const isGheHost = hostname.endsWith('.GHE.COM');
|
const isGheHost = hostname.endsWith('.GHE.COM');
|
||||||
const isLocalHost = hostname.endsWith('.LOCALHOST');
|
const isLocalHost = hostname.endsWith('.LOCALHOST');
|
||||||
return !isGitHubHost && !isGheHost && !isLocalHost;
|
return false;
|
||||||
}
|
}
|
||||||
function getGitHubWorkspaceDir() {
|
function getGitHubWorkspaceDir() {
|
||||||
const ghWorkspaceDir = process.env['GITHUB_WORKSPACE'];
|
const ghWorkspaceDir = process.env['GITHUB_WORKSPACE'];
|
||||||
|
|||||||
Reference in New Issue
Block a user