Skip to content

Commit

Permalink
example of filter issue for @mcolyer
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyreilly committed Jan 18, 2019
1 parent ba6f5c4 commit ff9bc37
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
workflow "build, test and publish on release" {
on = "push"
# resolves = "publish" - commented until this issue is resolved: https://github.com/actions/bin/issues/13
resolves = "check for new tag"
resolves = "publish"
}

# install with yarn
Expand Down Expand Up @@ -34,10 +33,9 @@ action "check for new tag" {
args = "tag"
}

# publish with npm - commented until this issue is resolved: https://github.com/actions/bin/issues/13
#action "publish" {
# needs = "check for new tag"
# uses = "actions/npm@1.0.0"
# args = "publish"
# secrets = ["NPM_AUTH_TOKEN"]
#}
action "publish" {
needs = "check for new tag"
uses = "actions/npm@1.0.0"
args = "publish"
secrets = ["NPM_AUTH_TOKEN"]
}

0 comments on commit ff9bc37

Please sign in to comment.