mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-24 10:49:00 +02:00
14 lines
246 B
HCL
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"
|
|
}
|