10 lines
314 B
YAML
10 lines
314 B
YAML
---
|
|
# tasks file for ericomeehan.gondwanamc
|
|
- name: Deploy to testing
|
|
include_tasks: deploy-testing.yml
|
|
when: target_namespace == "testing" or target_namespace == "both"
|
|
|
|
- name: Deploy to production
|
|
include_tasks: deploy-production.yml
|
|
when: target_namespace == "production" or target_namespace == "both"
|