10 lines
141 B
HCL
10 lines
141 B
HCL
workflow "Main" {
|
|
on = "push"
|
|
resolves = ["vuefun Build"]
|
|
}
|
|
|
|
action "vuefun Build" {
|
|
uses = "./vuefun/.actions/build"
|
|
args = "wat"
|
|
}
|