Skip to content

Commit

Permalink
Disable "Publish to npm" in the Release workflow (#9911) [skip ci]
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nicolo-ribaudo committed Apr 26, 2019
1 parent 277a262 commit c5b5c83
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .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" {
Expand Down

0 comments on commit c5b5c83

Please sign in to comment.