datagrok-tools 6.1.7 → 6.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/commands/publish.js +1 -1
- package/package.json +1 -1
package/bin/commands/publish.js
CHANGED
|
@@ -283,7 +283,7 @@ async function processDockerImages(packageName, version, registry, devKey, host,
|
|
|
283
283
|
if (registry) {
|
|
284
284
|
const remoteTag = `${registry}/datagrok/${remoteFullName}`;
|
|
285
285
|
dockerTag(img.fullLocalName, remoteTag);
|
|
286
|
-
}
|
|
286
|
+
} else dockerTag(img.fullLocalName, `datagrok/${remoteFullName}`);
|
|
287
287
|
color.success(`Built and tagged ${img.fullLocalName}`);
|
|
288
288
|
return pushImage(img.imageName, registryTag, registry);
|
|
289
289
|
}
|
package/package.json
CHANGED