diff --git a/index.js b/index.js index 187b93f..2b7de21 100644 --- a/index.js +++ b/index.js @@ -19,10 +19,12 @@ const path = require("path"); */ function replacePlaceholders(content) { const deployTime = new Date().toISOString(); - return content + content = content .replace(/{{gitHash}}/g, process.env.GITHUB_SHA) .replace(/{{gitRef}}/g, process.env.GITHUB_REF) .replace(/{{deployTime}}/g, deployTime); + core.info(content); + return content; } /**