diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-10-08 12:54:43 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-10-08 12:54:43 -0400 |
commit | 1151e1fac5e7805e0cfeea89acc3b2efedb89940 (patch) | |
tree | 036e913688294bd61ded0b13e7c01ab00bd77747 | |
parent | 508aba7647be4037d3d4d50948dc5dae6b3dbc2d (diff) | |
download | emacsconf-ansible-1151e1fac5e7805e0cfeea89acc3b2efedb89940.tar.xz emacsconf-ansible-1151e1fac5e7805e0cfeea89acc3b2efedb89940.zip |
generate schedule when slug is not defined
-rw-r--r-- | playbook.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbook.yaml b/playbook.yaml index 665af55..9d87615 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -39,7 +39,7 @@ tasks: - name: Publish the schedule command: emacs -l ~/.emacs.d/init.el --batch --exec '(emacsconf-generate-main-schedule)' - when: private.changed + when: private.changed and slug is not defined - name: Update a specific talk's nav page tags: publish-talk command: emacs -l ~/.emacs.d/init.el --batch --exec '(emacsconf-with-talk-heading "{{ slug }}" (emacsconf-update-talk))' |