From bef833be4b8f1fa787386c971cbf207032647fe8 Mon Sep 17 00:00:00 2001 From: octopus Date: Sat, 20 Jun 2026 16:37:32 +0800 Subject: [PATCH] Patch: disable isGhes() check for Gitea Actions compatibility --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 374211f..19df0d7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2903,7 +2903,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; } exports.isGhes = isGhes; function getGitHubWorkspaceDir() {