From dad5ef3629b6f9303af8a80b07ab745051d186af Mon Sep 17 00:00:00 2001 From: Omer Mishania Date: Tue, 18 Nov 2025 20:07:10 +0200 Subject: [PATCH] Fix error message to show correct tag name --- src/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.ts b/src/github.ts index 033f284..63c3786 100644 --- a/src/github.ts +++ b/src/github.ts @@ -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; }