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

This commit is contained in:
lucasdpt
2026-04-04 19:56:58 +02:00
parent bbbca2ddaa
commit 2ba240d0ca
2 changed files with 2 additions and 2 deletions

View File

@@ -82493,7 +82493,7 @@ function isGhes() {
const isGitHubHost = hostname === 'GITHUB.COM';
const isGheHost = hostname.endsWith('.GHE.COM');
const isLocalHost = hostname.endsWith('.LOCALHOST');
return !isGitHubHost && !isGheHost && !isLocalHost;
return false;
}
function getGitHubWorkspaceDir() {
const ghWorkspaceDir = process.env['GITHUB_WORKSPACE'];