1
0
mirror of https://gitea.com/gitea/act synced 2026-05-06 01:37:48 +02:00
Files
act/example/.github/main.workflow
2019-01-12 20:45:25 -08:00

21 lines
315 B
HCL

workflow "build-and-deploy" {
on = "push"
resolves = ["deploy"]
}
action "build" {
uses = "./action1"
args = "echo 'build'"
}
action "test" {
uses = "docker://ubuntu:18.04"
args = "echo 'test'"
needs = ["build"]
}
action "deploy" {
uses = "./action2"
args = "echo 'deploy'"
needs = ["test"]
}