mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-28 06:44:39 +02:00
20 lines
381 B
HCL
20 lines
381 B
HCL
workflow "Build, Test, and Publish" {
|
|
on = "push"
|
|
resolves = ["nuxt/actions-yarn@master"]
|
|
}
|
|
|
|
action "Build" {
|
|
uses = "nuxt/actions-yarn@master"
|
|
args = "install"
|
|
}
|
|
|
|
action "Compile Assets" {
|
|
uses = "nuxt/actions-yarn@master"
|
|
args = "encore production"
|
|
}
|
|
|
|
action "nuxt/actions-yarn@master" {
|
|
uses = "nuxt/actions-yarn@master"
|
|
needs = ["Build"]
|
|
args = "run build"
|
|
}
|