Update main.workflow

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

View file

@ -1,6 +1,6 @@
workflow "Build, Test, and Publish" { workflow "Build, Test, and Publish" {
on = "push" on = "push"
resolves = ["new-action"] resolves = ["nuxt/actions-yarn@master"]
} }
action "Build" { action "Build" {
@ -16,10 +16,5 @@ action "Compile Assets" {
action "nuxt/actions-yarn@master" { action "nuxt/actions-yarn@master" {
uses = "nuxt/actions-yarn@master" uses = "nuxt/actions-yarn@master"
needs = ["Build"] needs = ["Build"]
args = "run" args = "run build"
}
action "new-action" {
uses = "owner/repo/path@ref"
needs = ["nuxt/actions-yarn@master"]
} }