Skip to content

Commit 8ac9e8f

Browse files
add hash field to images in -o yaml option (#429)
1 parent b807c1d commit 8ac9e8f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/interface/cli/helpers/image.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class ImagesHelper {
2020
annotations: _.get(image, 'metadata', {}),
2121
tagId: tag._id,
2222
created: image.created ? new Date(image.created) : undefined,
23+
hash: image.hash,
2324
};
2425
newImage.id = image.internalImageId ? image.internalImageId.substring(0, 12) : '\b';
2526
if (_.isEqual(tag, NONE_TAG)) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.50.0",
3+
"version": "0.50.1",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)