29 lines
843 B
YAML
29 lines
843 B
YAML
# yaml-language-server: $schema=https://git.jesof.ch/public/mstr-schemas/raw/branch/main/mstr-tasks-schema.json
|
|
tasks:
|
|
- call:
|
|
description: 'Upgrade project on "$(target)"'
|
|
script: "@(system)/upgrade_project.yaml"
|
|
args:
|
|
path: $(target)
|
|
loop:
|
|
values: $(dirlist("@(projects)", dirlistWithDirsOnly()))
|
|
as: target
|
|
|
|
- call:
|
|
description: 'Upgrade github application "$(settings.name)"'
|
|
script: "@(system)/upgrade_github_application.yaml"
|
|
args:
|
|
settings: $(settings)
|
|
loop:
|
|
values: $(github)
|
|
as: settings
|
|
|
|
- call:
|
|
description: 'Upgrade orchestra application "$(settings.role)"'
|
|
script: "@(system)/upgrade_orchestra_application.yaml"
|
|
args:
|
|
settings: $(settings)
|
|
loop:
|
|
values: $(orchestra)
|
|
as: settings
|