From 7df0d161319817edbaad66255bd9d63741616dc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Tue, 19 Mar 2019 19:02:54 +0100 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index feedcc4d82..d5a580b302 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -6,34 +6,28 @@ workflow "Release" { action "Trigger GitHub release" { uses = "./.github/actions/trigger-github-release/" secrets = ["GITHUB_TOKEN"] - env = { - COMMIT_AUTHOR_NAME = "Babel Bot" + COMMIT_AUTHOR_NAME = "Babel Bot" COMMIT_AUTHOR_EMAIL = "babel@hopeinsource.com" } - needs = ["Create release tag"] } action "Publish to npm" { uses = "docker://node:10" secrets = ["NPM_TOKEN"] - runs = "make" args = "publish" - env = { CI = "true" } - needs = ["Create release tag"] } # When GitHub Actions will support the "release" event for public # repositories, we won't need this checks anymore. action "Create release tag" { - uses ="./.github/actions/create-release-tag" - + uses = "./.github/actions/create-release-tag" needs = [ "Is version commit", "On master branch",