From c5b5c83398891a7aa4dd48bc3905c30bf02fff60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Fri, 26 Apr 2019 22:44:29 +0200 Subject: [PATCH] Disable "Publish to npm" in the Release workflow (#9911) [skip ci] GitHub actions are too slow for this, it takes more than 15 mins. Publishing to npm from GH actions is a cool idea, but it's a lot faster to publish locally. Also, I think that since when I introduced this action I always killed it; either because it was to slow or because I had to make some manual tweaks during the release. --- .github/main.workflow | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index c5156c783d..34173cb459 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,12 @@ workflow "Release" { on = "push" - resolves = ["Trigger GitHub release", "Publish to npm"] + resolves = [ + "Trigger GitHub release", + # GitHub actions are too slow for this, it takes more than 15 mins. + # Publishing to npm from GH actions is a cool idea, but it's a lot faster to + # publish locally. + # "Publish to npm", + ] } action "Trigger GitHub release" {