Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,4 @@ deploy/provision:
deploy/app:
@echo "Deploying version $(V) to a remote server"
$(DEPLOY_CMD) playbooks/03_app.yml --extra-vars "app_version=$(V)"
$(DEPLOY_CMD) playbooks/04_cron.yml
3 changes: 2 additions & 1 deletion deploy/playbooks/04_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
- name: "Download pretalx data every hour"
ansible.builtin.cron:
name: "Download pretalx data every hour"
minute: "5" # run on the 5th minute of every hour
minute: "5"
hour: "8" # run once a day at 08:05 am
job: "make prod/cron/pretalx"