deployment templates for lichen
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: sync staging compose file in override.yml when deploying staging

authored by

notplants and committed by
notplants
43628e0a fc3b33cf

+7
+7
ansible/override.yml
··· 53 53 when: not compose_stat.stat.exists 54 54 55 55 tasks: 56 + - name: Sync staging compose file if needed 57 + copy: 58 + src: "{{ playbook_dir }}/../docker-compose/docker-compose.staging.yml" 59 + dest: "{{ lichen_deploy_dir }}/docker-compose.staging.yml" 60 + mode: "0644" 61 + when: lichen_binary_dir == 'staging-bin' 62 + 56 63 - name: Ensure binary directory exists on the server 57 64 file: 58 65 path: "{{ lichen_deploy_dir }}/{{ lichen_binary_dir }}"