Part-DB.Part-DB-server/.github/main.workflow
2019-03-25 16:58:06 +01:00

14 lines
246 B
HCL

workflow "Build, Test, and Publish" {
on = "push"
resolves = ["Build"]
}
action "Build" {
uses = "nuxt/actions-yarn@master"
args = "install"
}
action "Compile Assets" {
uses = "nuxt/actions-yarn@master"
args = "encore production"
}