Skip to content

Instantly share code, notes, and snippets.

@krzema12
Created November 20, 2022 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krzema12/995cbceadde107a4b9b4985b99e099bf to your computer and use it in GitHub Desktop.
Save krzema12/995cbceadde107a4b9b4985b99e099bf to your computer and use it in GitHub Desktop.
workflow(...) {
val job1 = job(id = "job_1") {
// ...
}
job(
id = "job_2",
needs = listOf(job1),
) {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment