change include to include_tasks

This commit is contained in:
meaz 2023-01-08 20:27:20 +01:00
parent ea18febe59
commit e3b1c5006d
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 5 additions and 5 deletions

View File

@ -1,19 +1,19 @@
---
- name: Install dependencies
include: installdeps.yml
include_tasks: installdeps.yml
- name: Clone repo
include: git.yml
include_tasks: git.yml
- name: Set personal config
include: config.yml
include_tasks: config.yml
tags: config
- name: Build webpages with hugo
include: generate.yml
include_tasks: generate.yml
tags: generate
- name: Update
include: update.yml
include_tasks: update.yml
when: cstate_update == 'yes'