We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de97916 commit b374207Copy full SHA for b374207
website/workers/app.ts
@@ -456,7 +456,7 @@ export class OvernightSaveToR2 extends WorkflowEntrypoint<
456
console.log(`Uploading ${csv.length} bytes to R2`);
457
const upload = await this.env.R2_BUCKET.put(
458
`daily-observations/${startOfPeriod.getFullYear()}-${String(
459
- startOfPeriod.getMonth()
+ startOfPeriod.getMonth() + 1
460
).padStart(2, "0")}-${String(startOfPeriod.getDate()).padStart(
461
2,
462
"0"
website/wrangler.jsonc
@@ -72,7 +72,7 @@
72
},
73
"preview_urls": false,
74
"triggers": {
75
- "crons": ["45 10 * * *"] // every day at 10:45 AM UTC
+ "crons": ["30 2 * * *"] // every day at 2:30 AM UTC
76
77
"version_metadata": {
78
"binding": "CF_VERSION_METADATA"
0 commit comments