From f6cf869bcbc4bd48affacca21c9d5ff3c5f73613 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Mon, 25 Dec 2023 01:58:47 +0100 Subject: [PATCH] Added a test line --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } /**