ci: deploy config on merge or push #127
1 changed files with 18 additions and 0 deletions
18
.woodpecker/ansible-playbook.yml
Normal file
18
.woodpecker/ansible-playbook.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
depends_on:
|
||||
- ansible-lint
|
||||
|
||||
steps:
|
||||
ansible-playbook:
|
||||
image: quay.io/ansible/creator-ee:v24.2.0
|
||||
commands:
|
||||
- ansible-lint --version
|
||||
- echo $${VAULTPASS} > ./vault-pass.yml # nach des Secret in Großschreibung
|
||||
- ansible-galaxy install -r requirements.yaml
|
||||
- echo RUUUUUN! #ansible-playbook playbooks/2_all.yml playbooks/3_service/* --limit production
|
||||
# https://woodpecker-ci.org/docs/usage/secrets#use-secrets-in-commands
|
||||
secrets: [vaultpass]
|
||||
when:
|
||||
- event: [push, pull_request]
|
||||
branch: master
|
||||
...
|
Loading…
Reference in a new issue