Update main.workflow

This commit is contained in:
Jan Böhmer 2019-03-25 22:09:49 +01:00 committed by GitHub
parent bec7a21517
commit fd541c874d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
.github/main.workflow vendored
View file

@ -1,6 +1,6 @@
workflow "Build, Test, and Publish" { workflow "Build, Test, and Publish" {
on = "push" on = "push"
resolves = ["Build"] resolves = ["new-action"]
} }
action "Build" { action "Build" {
@ -12,3 +12,14 @@ action "Compile Assets" {
uses = "nuxt/actions-yarn@master" uses = "nuxt/actions-yarn@master"
args = "encore production" 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"]
}