From e03aff3e033f21c86f4f1ec3165fd029b8478464 Mon Sep 17 00:00:00 2001 From: lucasdpt Date: Sat, 4 Apr 2026 19:58:37 +0200 Subject: [PATCH] feat: update dist to remove ghes check --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index d7aade7..6720ac4 100644 --- a/dist/index.js +++ b/dist/index.js @@ -80619,7 +80619,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'];