From fd541c874db0a4ab8a084f686f626e31c39e7c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 25 Mar 2019 22:09:49 +0100 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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"] +}