From 0c611c1fbaf077f061b07f2270fdb9af22e58133 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 27 Mar 2021 16:29:38 -0700 Subject: [PATCH] It lives! --- tools/depgraph.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/depgraph.js b/tools/depgraph.js index 7e888f7..981b951 100644 --- a/tools/depgraph.js +++ b/tools/depgraph.js @@ -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],