Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunnaye committed May 2, 2024
1 parent 9f2c7be commit 1809ec9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions upsertGitHubTag/deployment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 1809ec9

Please sign in to comment.