fix ci
This commit is contained in:
parent
bf46e528f8
commit
ef43ef29c8
|
@ -33,7 +33,9 @@ jobs:
|
||||||
|
|
||||||
- name: Check playbooks
|
- name: Check playbooks
|
||||||
run: |
|
run: |
|
||||||
find . -wholename "*/infra/*-playbook.yaml" -type f -exec ansible-playbook --inventory ./inventory --check {} \;
|
for file in $(find . -wholename "*/infra/*-playbook.yaml" -type f); do
|
||||||
|
ansible-playbook --inventory ./inventory --check "$file"
|
||||||
|
done
|
||||||
deploy:
|
deploy:
|
||||||
name: Deploy modified infrastructure
|
name: Deploy modified infrastructure
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -86,4 +88,6 @@ jobs:
|
||||||
|
|
||||||
- name: Run playbooks
|
- name: Run playbooks
|
||||||
run: |
|
run: |
|
||||||
find . -wholename "*/infra/*-playbook.yaml" -type f -exec ansible-playbook --inventory ./inventory {} \;
|
for file in $(find . -wholename "*/infra/*-playbook.yaml" -type f); do
|
||||||
|
ansible-playbook --inventory ./inventory "$file"
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in New Issue