Skip to content

Commit

Permalink
Merge pull request #898 from TypeStrong/example-for-mcolyer
Browse files Browse the repository at this point in the history
example of filter issue for @mcolyer
  • Loading branch information
johnnyreilly committed Jan 18, 2019
2 parents ba6f5c4 + ff9bc37 commit 92a2de9
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/main.workflow
@@ -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 92a2de9

Please sign in to comment.