Add a log for visibility

This commit is contained in:
Oliver 2025-11-16 14:04:41 -07:00
parent a4355c608a
commit 07a55e9064

View file

@ -31,6 +31,8 @@ async function main() {
console.log(`Tag with name "${TAG_NAME}" already exists`); console.log(`Tag with name "${TAG_NAME}" already exists`);
process.exit(1); process.exit(1);
}; };
console.log(`Tag with name "${TAG_NAME}" not found, proceeding`);
}; };
main(); main();