diff --git a/.github/main.workflow b/.github/main.workflow index 2d66ae6c..54df40cf 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,6 @@ workflow "Build, Test, and Publish" { on = "push" - resolves = ["Build"] + resolves = ["new-action"] } action "Build" { @@ -12,3 +12,14 @@ 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" +} + +action "new-action" { + uses = "owner/repo/path@ref" + needs = ["nuxt/actions-yarn@master"] +}