Skip to content

Commit

Permalink
chore: add workflow for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Mar 23, 2019
1 parent 114b1a7 commit 9246e71
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
workflow "Deploy" {
on = "push"
resolves = [
"Release",
]
}

action "Master" {
uses = "actions/bin/filter@master"
args = "branch master"
}

action "Release" {
uses = "satya164/node-app-tasks@master"
secrets = ["NPM_AUTH_TOKEN", "GITHUB_TOKEN"]
args = "release-it --non-interactive"
}

0 comments on commit 9246e71

Please sign in to comment.