Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Commit

Permalink
Update main.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tanguyantoine authored Dec 29, 2018
1 parent fefa505 commit d230daf
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
workflow "Build, Test, and Publish" {
on = "push"
resolves = ["Publish"]
resolves = [
"Publish",
"GitHub Action for npm",
]
}

action "Build" {
Expand All @@ -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"]
//}
//}

0 comments on commit d230daf

Please sign in to comment.