dvs workflow show
Display workflow definition.
Syntaxβ
dvs workflow show <name>
Exampleβ
dvs workflow show deploy
Outputβ
Shows the YAML workflow definition:
name: deploy
description: Standard rsync deployment
steps:
- name: sync-files
action: rsync
params:
source: "{{ files.local_path }}"
dest: "{{ files.remote_path }}"
delete: false
- name: clear-cache
action: ssh-command
params:
command: "cd {{ files.remote_path }} && bin/console cache:clear"
Workflow Structureβ
name: workflow-name
description: Human-readable description
steps:
- name: step-name
action: action-type
params:
key: value
when: condition # optional