From 7080cf2db5d30168a026682c4662d83bfe2d90f9 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Mon, 3 Mar 2025 14:32:14 +0000 Subject: [PATCH] [RN][Releases] Fix Publish template The publishTemplate script references a variable that is not defined. ## Changelog: [Internal] - --- .github/workflow-scripts/publishTemplate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflow-scripts/publishTemplate.js b/.github/workflow-scripts/publishTemplate.js index b0c8946b679..980534f011a 100644 --- a/.github/workflow-scripts/publishTemplate.js +++ b/.github/workflow-scripts/publishTemplate.js @@ -86,7 +86,7 @@ module.exports.verifyPublishedTemplate = async ( return; } log( - `🐌 ${TEMPLATE_NPM_PKG}@latest → ${pkg.version} on npm and not ${version} as expected, retrying...`, + `🐌 ${TEMPLATE_NPM_PKG}@latest → ${json.version} on npm and not ${version} as expected, retrying...`, ); } catch (e) { log(`Nope, fetch failed: ${e.message}`);