It lives!

This commit is contained in:
Radon Rosborough 2021-03-27 16:29:38 -07:00
parent 67299ce6fe
commit 0c611c1fba
1 changed files with 4 additions and 1 deletions

View File

@ -511,7 +511,10 @@ async function executeDepGraph({
seen.add(dep);
}
if (statuses[target]) {
if (!artifacts[target].publishTarget) {
if (
!artifacts[target].publishTarget &&
!(statuses[target] === "publishToRegistry" && !publish)
) {
plan.push({
artifact: target,
action: statuses[target],