mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-03 10:20:20 +00:00
20 lines
286 B
HCL
20 lines
286 B
HCL
workflow "buildwf" {
|
|
on = "push"
|
|
resolves = ["build"]
|
|
}
|
|
|
|
action "build" {
|
|
uses = "./action1"
|
|
args = "echo 'build'"
|
|
}
|
|
|
|
workflow "deploywf" {
|
|
on = "release"
|
|
resolves = ["deploy"]
|
|
}
|
|
|
|
action "deploy" {
|
|
uses = "./action2"
|
|
runs = ["/bin/sh", "-c", "cat $GITHUB_EVENT_PATH"]
|
|
}
|