ci: deploy config on merge or push #127
5 changed files with 21 additions and 2 deletions
|
@ -23,3 +23,4 @@ exclude_paths:
|
||||||
- roles/ansible-ufw
|
- roles/ansible-ufw
|
||||||
- roles/ansible_role_gitea
|
- roles/ansible_role_gitea
|
||||||
- roles/ansible-role-postgresql
|
- roles/ansible-role-postgresql
|
||||||
|
- .woodpecker/
|
||||||
|
|
|
@ -13,6 +13,6 @@ steps:
|
||||||
# https://woodpecker-ci.org/docs/usage/secrets#use-secrets-in-commands
|
# https://woodpecker-ci.org/docs/usage/secrets#use-secrets-in-commands
|
||||||
secrets: [vaultpass]
|
secrets: [vaultpass]
|
||||||
when:
|
when:
|
||||||
- event: [push, pull_request, cron]
|
- event: [push, pull_request, cron, pull_request_closed, tag, release, manual]
|
||||||
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
||||||
...
|
...
|
||||||
|
|
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_closed]
|
||||||
|
branch: master
|
||||||
|
...
|
|
@ -5,6 +5,6 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
|
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
|
||||||
when:
|
when:
|
||||||
- event: [push, pull_request, cron]
|
- event: [push, pull_request, cron, pull_request_closed, tag, release, manual]
|
||||||
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
||||||
...
|
...
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 7.2 KiB |
Loading…
Reference in a new issue