Merge branch '18947-githttpd'
[arvados.git] / sdk / cwl / tests / 18994-basename / wf_ren.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 inputs:
8   f1:
9     type: File
10     default:
11       class: File
12       location: whale.txt
13   newname:
14     type: string
15     default:  "badger.txt"
16 outputs: []
17 requirements:
18   StepInputExpressionRequirement: {}
19   InlineJavascriptRequirement: {}
20 steps:
21   rename:
22     in:
23       f1: f1
24       newname: newname
25     run: rename.cwl
26     out: [out]
27
28   echo:
29     in:
30       p: rename/out
31       checkname: newname
32     out: []
33     run: check.cwl