Fix error message to show correct tag name

This commit is contained in:
Omer Mishania 2025-11-18 20:07:10 +02:00
parent 1952f9ab1b
commit dad5ef3629

View file

@ -327,7 +327,7 @@ export const release = async (
} catch (error) {
if (error.status !== 404) {
console.log(
`⚠️ Unexpected error fetching GitHub release for tag ${config.github_ref}: ${error}`,
`⚠️ Unexpected error fetching GitHub release for tag ${tag}: ${error}`,
);
throw error;
}