All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Signed-off-by: Nis Wechselberg <enbewe@enbewe.de>
13 lines
295 B
YAML
13 lines
295 B
YAML
---
|
|
- name: 'Ensure required software is installed'
|
|
become: true
|
|
ansible.builtin.apt:
|
|
name: '{{ item }}'
|
|
state: 'present'
|
|
loop:
|
|
- 'podman'
|
|
- 'unzip'
|
|
|
|
- name: 'Deploy static sites'
|
|
ansible.builtin.include_tasks: 'deploy_static_site.yml'
|
|
loop: '{{ static_caddy_sites }}'
|