10 lines
177 B
HCL
10 lines
177 B
HCL
workflow "Main" {
|
|
on = "push"
|
|
resolves = ["vuefun Build"]
|
|
}
|
|
|
|
action "vuefun Build" {
|
|
uses = "cedrickring/golang-action/go1.12@1.1.1"
|
|
args = "make -C vuefun clean all"
|
|
}
|