Fix syntax error

This commit is contained in:
J.P. Krauss
2026-03-21 07:45:32 -07:00
parent fad97e6094
commit d752d339f3
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@@ -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,

View File

@@ -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,