-
Notifications
You must be signed in to change notification settings - Fork 0
/
render.yaml
36 lines (33 loc) · 1012 Bytes
/
render.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
services:
# 日本時間の毎週土曜日の午前9時30分に実行
- type: cron
name: saturday job
runtime: node
schedule: "30 0 * * 6"
buildCommand: pnpm install && pnpm run build
startCommand: pnpm run job:saturday
region: singapore
# 日本時間の毎週月曜日の午前9時30分に実行
- type: cron
name: monday job
runtime: node
schedule: "30 0 * * 1"
buildCommand: pnpm install && pnpm run build
startCommand: pnpm run job:monday
region: singapore
# 日本時間の毎月1日の午後12時に実行
- type: cron
name: monthly job
runtime: node
schedule: "0 3 1 * *"
buildCommand: pnpm install && pnpm run build
startCommand: pnpm run job:monthly
region: singapore
# 日本時間の毎月26日の午前9時30分に実行
- type: cron
name: 26th job
runtime: node
schedule: "30 0 26 * *"
buildCommand: pnpm install && pnpm run build
startCommand: pnpm run job:26th
region: singapore