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 803829e commit 9f2c7be
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions upsertGitHubTag/deployment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,10 @@ function logPayloadToS3(body, deliveryId) {
// If bucket name is not null (had to put this for the integration test)
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
const bucketPath =
`${uploadDate.getFullYear()}` +

Check failure on line 271 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 271 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
`-${uploadDate.getMonth() + 1}` +

Check failure on line 272 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 272 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
`-${uploadDate.getDate()}/${deliveryId}`; //formats path to YYYY-MM-DD/deliveryid

Check failure on line 273 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 273 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

const command = new PutObjectCommand({
Bucket: process.env.BUCKET_NAME,
Expand Down

0 comments on commit 9f2c7be

Please sign in to comment.