useful-scripts-helpdesk/.drone.yml
Lulzette f72185ba59
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
continuous-integration/drone/pr Build is passing
Добавил деплой на тест и прод
2022-01-03 14:23:41 +00:00

66 lines
810 B
YAML

---
kind: pipeline
type: exec
name: check on test
trigger:
event:
- push
- pull_request
steps:
- name: Check playbook
commands:
- ansible-playbook -C playbook.yml
node:
target: generic
---
kind: pipeline
type: exec
name: deploy to prod
steps:
- name: Check playbook
commands:
- ansible-playbook -C playbook.yml
- name: Run playbook
commands:
- ansible-playbook playbook.yml
node:
target: shell-scripts
trigger:
event:
- promote
target:
- production
---
kind: pipeline
type: exec
name: deploy to test
steps:
- name: Check playbook
commands:
- ansible-playbook -C playbook.yml
- name: Run playbook
commands:
- ansible-playbook playbook.yml
node:
target: generic
trigger:
event:
- promote
target:
- testing