From ff9bc3723569de8c9819208d82b9fab8fca8b546 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 18 Jan 2019 20:56:11 +0000 Subject: [PATCH] example of filter issue for @mcolyer --- .github/main.workflow | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 397120d8c..0118335e7 100644 --- a/.github/main.workflow +++ b/.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 @@ -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"] +}