From c6c0c1709a183b16abba48cae38f0fa95270527a Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Sat, 21 Mar 2026 06:08:20 -0700 Subject: [PATCH] Add debugging to ensure tag name is encoded --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index 70a9d7a..5c87e2e 100644 --- a/main.js +++ b/main.js @@ -70,6 +70,7 @@ async function run() { */ async function createOrGetRelease(client, owner, repo, body) { try { + console.log(`Checking for existing release at ${encodeURIComponent(body.tag)}`); let release = await client.repository.repoGetReleaseByTag({ owner: owner, repo: repo,