From d230daff0a30cb25287cd2a033438af1c6a744fa Mon Sep 17 00:00:00 2001 From: Tanguy Antoine Date: Sat, 29 Dec 2018 09:20:51 +0100 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 6114a56b..7ece7b43 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,9 @@ workflow "Build, Test, and Publish" { on = "push" - resolves = ["Publish"] + resolves = [ + "Publish", + "GitHub Action for npm", + ] } action "Build" { @@ -14,9 +17,12 @@ action "Test" { args = "test" } -//action "Publish" { +action "GitHub Action for npm" { + uses = "actions/npm@e7aaefe" + args = "install" +}//action "Publish" { // needs = "Test" // uses = "actions/npm@master" // args = "publish --access public" // secrets = ["NPM_AUTH_TOKEN"] -//} \ No newline at end of file +//}