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.
This commit is contained in:
Nicolò Ribaudo 2019-04-26 22:44:29 +02:00 committed by GitHub
parent 277a2620c6
commit c5b5c83398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,12 @@
workflow "Release" { workflow "Release" {
on = "push" 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" { action "Trigger GitHub release" {