From 405388d2905b4898ab7985c87d80bce81117f993 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Mon, 18 May 2026 10:52:36 -0600 Subject: [PATCH] test_11 --- action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.js b/action.js index 13061d0..78fd708 100644 --- a/action.js +++ b/action.js @@ -11,7 +11,7 @@ const sendFile = async (urlPath, data) => { let r = await fetch(`${repoBaseUrl}/${urlPath}`, { method: "PUT", headers: { - Authorization: `Basic ${process.env.INPUT_REPO_USER}:${process.env.INPUT_REPO_PASS}`, + Authorization: `Basic ${Buffer.from(`${process.env.INPUT_REPO_USER}:${process.env.INPUT_REPO_PASS}`).toString("base64")}`, }, body: data, });