From c9dcd77560c32267afa7986eb931b1a95afa2afe Mon Sep 17 00:00:00 2001 From: Jason Sooter Date: Mon, 23 Oct 2023 20:37:01 +0200 Subject: [PATCH] feat(code): add last deployed timestamp to function code --- scripts/deployDestinationFunction.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deployDestinationFunction.js b/scripts/deployDestinationFunction.js index b05858c..97bdad9 100644 --- a/scripts/deployDestinationFunction.js +++ b/scripts/deployDestinationFunction.js @@ -28,6 +28,7 @@ async function run() { ); const code = `/** * Output from GITHUB ${GITHUB_JOB} Environment + * - Last Deployed: ${new Date().toISOString()} */ ${functionCode}