Created
September 7, 2023 09:01
-
-
Save anna-geller/2568273849288e35b8efc38a8174c31d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: shell | |
namespace: dev | |
description: this flow shows how to pass files between tasks. | |
tasks: | |
- id: t1 | |
type: io.kestra.plugin.scripts.shell.Commands | |
commands: | |
- touch abc | |
- id: t2 | |
type: io.kestra.plugin.scripts.shell.Commands | |
commands: | |
- touch abcd | |
- id: t3 | |
type: io.kestra.plugin.scripts.shell.Commands | |
commands: | |
- ls -ltr abcde | |
triggers: | |
- id: schedule | |
type: io.kestra.core.models.triggers.types.Schedule | |
cron: "*/2 * * * *" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment