test_11
Push to main / Reset-Version-Tag (push) Successful in 6s

This commit is contained in:
2026-05-18 10:52:36 -06:00
parent 4af1235e66
commit 405388d290
+1 -1
View File
@@ -11,7 +11,7 @@ const sendFile = async (urlPath, data) => {
let r = await fetch(`${repoBaseUrl}/${urlPath}`, { let r = await fetch(`${repoBaseUrl}/${urlPath}`, {
method: "PUT", method: "PUT",
headers: { 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, body: data,
}); });