run and use commands accept objects as arguments for with and read parameters, but in the documents they are written as strings. this is what the docs suggest:
run: some-recipe.yml
with:
- x
- y:
path: './{{some-thing}}/whatever'
read:
- z
while the correct format is:
run: some-recipe.yml
with:
x: x
y:
path: './{{some-thing}}/whatever'
read:
z: z
run
anduse
commands accept objects as arguments forwith
andread
parameters, but in the documents they are written as strings. this is what the docs suggest:while the correct format is: