We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae9e379 commit e696869Copy full SHA for e696869
Makefile
@@ -157,3 +157,4 @@ deploy/provision:
157
deploy/app:
158
@echo "Deploying version $(V) to a remote server"
159
$(DEPLOY_CMD) playbooks/03_app.yml --extra-vars "app_version=$(V)"
160
+ $(DEPLOY_CMD) playbooks/04_cron.yml
deploy/playbooks/04_cron.yml
@@ -5,5 +5,6 @@
5
- name: "Download pretalx data every hour"
6
ansible.builtin.cron:
7
name: "Download pretalx data every hour"
8
- minute: "5" # run on the 5th minute of every hour
+ minute: "5"
9
+ hour: "8" # run once a day at 08:05 am
10
job: "make prod/cron/pretalx"
0 commit comments