Add proxy_binary input to start-proxy Action

This allows a custom binary to be used. Mainly for testing.
This commit is contained in:
Michael B. Gale
2025-03-31 15:28:51 +01:00
parent f843d94177
commit 6e35f86a20
4 changed files with 10 additions and 3 deletions
+3 -1
View File
@@ -119,7 +119,9 @@ async function runWrapper() {
};
// Start the Proxy
const proxyBin = await getProxyBinaryPath();
const proxyBin =
actionsUtil.getOptionalInput("proxy_binary") ??
(await getProxyBinaryPath());
await startProxy(proxyBin, proxyConfig, proxyLogFilePath, logger);
}