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:
parent
277a2620c6
commit
c5b5c83398
8
.github/main.workflow
vendored
8
.github/main.workflow
vendored
@ -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" {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user