diff --git a/.github/workflows/buildScripts/replaceTokens.js b/.github/workflows/buildScripts/replaceTokens.js index bf131a7..565cfdb 100644 --- a/.github/workflows/buildScripts/replaceTokens.js +++ b/.github/workflows/buildScripts/replaceTokens.js @@ -19,6 +19,7 @@ module.exports = async ({ github, context, core, jobId }) => { const original = match[0]; const token = match[1].replace(/-/g, '_').toUpperCase(); const value = getValue(token, jobId); + console.log(`Replacing ${original} with ${value} for ${token}`); if (!value) { core.setFailed(`Token ${token} not found`); return false;