From 1809ec96da02e35336c05819b1d274df93220e18 Mon Sep 17 00:00:00 2001 From: hyunnaye Date: Thu, 2 May 2024 10:28:09 -0400 Subject: [PATCH] eslint --- upsertGitHubTag/deployment/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/upsertGitHubTag/deployment/index.js b/upsertGitHubTag/deployment/index.js index 6e1c91d..0212439 100644 --- a/upsertGitHubTag/deployment/index.js +++ b/upsertGitHubTag/deployment/index.js @@ -268,9 +268,9 @@ function logPayloadToS3(body, deliveryId) { if (process.env.BUCKET_NAME) { const uploadDate = new Date(); const bucketPath = - `${uploadDate.getFullYear()}` + - `-${uploadDate.getMonth() + 1}` + - `-${uploadDate.getDate()}/${deliveryId}`; //formats path to YYYY-MM-DD/deliveryid + `${uploadDate.getFullYear()}` + + `-${uploadDate.getMonth() + 1}` + + `-${uploadDate.getDate()}/${deliveryId}`; //formats path to YYYY-MM-DD/deliveryid const command = new PutObjectCommand({ Bucket: process.env.BUCKET_NAME,