diff --git a/dist/index.js b/dist/index.js index 2e93484..137c914 100644 --- a/dist/index.js +++ b/dist/index.js @@ -48206,7 +48206,7 @@ async function run() { */ async function createOrGetRelease(client, owner, repo, body) { try { - console.log(`Checking for existing release at ${encodeURIComponent(body.tag)}`); + console.log(`Checking for existing release at ${encodeURIComponent(body.tag_name)}`); let release = await client.repository.repoGetReleaseByTag({ owner: owner, repo: repo, diff --git a/main.js b/main.js index 5c87e2e..503faf0 100644 --- a/main.js +++ b/main.js @@ -70,7 +70,7 @@ async function run() { */ async function createOrGetRelease(client, owner, repo, body) { try { - console.log(`Checking for existing release at ${encodeURIComponent(body.tag)}`); + console.log(`Checking for existing release at ${encodeURIComponent(body.tag_name)}`); let release = await client.repository.repoGetReleaseByTag({ owner: owner, repo: repo,