Merge branch '17004-properties-on-output' refs #17004
[arvados.git] / sdk / cwl / tests / 17004-output-props.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 class: Workflow
6 cwlVersion: v1.2
7 $namespaces:
8   arv: "http://arvados.org/cwl#"
9 hints:
10   arv:OutputCollectionProperties:
11     outputProperties:
12       foo: bar
13       baz: $(inputs.inp.basename)
14 inputs:
15   inp: File
16 steps:
17   cat:
18     in:
19       inp: inp
20     run: cat.cwl
21     out: []
22 outputs: []