@vamship/build-utils 2.4.0 → 2.4.1
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/package.json
CHANGED
|
@@ -61,7 +61,7 @@ export class PublishContainerTaskBuilder extends TaskBuilder {
|
|
|
61
61
|
// Per docker docs `docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]`
|
|
62
62
|
_execa(
|
|
63
63
|
'docker',
|
|
64
|
-
['tag', definition.
|
|
64
|
+
['tag', definition.repo, `${definition.repo}:${tag}`],
|
|
65
65
|
{
|
|
66
66
|
stdio: 'inherit',
|
|
67
67
|
},
|
|
@@ -76,8 +76,8 @@ export class PublishContainerTaskBuilder extends TaskBuilder {
|
|
|
76
76
|
});
|
|
77
77
|
const pushTaskList = semverComponents.map((tag) => {
|
|
78
78
|
const pushTask = () =>
|
|
79
|
-
// Per docker docs `docker push [OPTIONS]
|
|
80
|
-
_execa('docker', ['push', `${definition.
|
|
79
|
+
// Per docker docs `docker push [OPTIONS] REPO[:TAG]`
|
|
80
|
+
_execa('docker', ['push', `${definition.repo}:${tag}`], {
|
|
81
81
|
stdio: 'inherit',
|
|
82
82
|
}).then(undefined, (err) => {
|
|
83
83
|
/*
|