From c617dee6182cd2571e28cdfdee6442f70e2bf7e3 Mon Sep 17 00:00:00 2001 From: Mikeal Rogers Date: Sat, 26 Jan 2019 19:54:51 -0800 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 99c4dc0..0604c6c 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,6 @@ workflow "Build and Publish" { on = "push" - resolves = "NPM Publish" + resolves = ["Publish"] } action "Shell Lint" { @@ -8,13 +8,8 @@ action "Shell Lint" { args = "entrypoint.sh" } -action "Docker Lint" { - uses = "docker://replicated/dockerfilelint" - args = ["Dockerfile"] -} - action "Build" { - needs = ["Shell Lint", "Docker Lint"] + needs = ["Shell Lint"] uses = "actions/docker/cli@master" args = "build -t npm ." } @@ -31,7 +26,7 @@ action "Publish Filter" { args = "branch master" } -action "NPM Publish" { +action "Publish" { needs = "Publish Filter" uses = "mikeal/merge-release@master" secrets = ["GITHUB_TOKEN", "NPM_AUTH_TOKEN"]