Make versions json dictionaries.
Strings don't seem to work.
This commit is contained in:
parent
4acfbf252a
commit
7a75a88da2
3 changed files with 3 additions and 3 deletions
|
@ -4,4 +4,4 @@ set -eu
|
|||
|
||||
[ -e /opt/resource/common ] && cd /opt/resource
|
||||
. ./common
|
||||
jq --null-input --arg version "$(crane digest "$REPOSITORY:$TAG")" '[$version]'
|
||||
jq --null-input --arg version "$(crane digest "$REPOSITORY:$TAG")" '[{"digest": $version}]' | jq -r tostring
|
||||
|
|
2
src/in
2
src/in
|
@ -11,4 +11,4 @@ cd "$oci_dir"
|
|||
tar cf "$1/image.tar" ./*
|
||||
cd - 1>&2
|
||||
|
||||
echo "$(jq .version < "$INPUT_FILE")"
|
||||
jq .version < "$INPUT_FILE" | jq -r tostring
|
||||
|
|
2
src/out
2
src/out
|
@ -11,4 +11,4 @@ cd "$oci_dir"
|
|||
tar xf "$1/$(jq -r .params.image < "$INPUT_FILE")"
|
||||
cd - 1>&2
|
||||
crane push "$oci_dir" "$REPOSITORY:$TAG" --image-refs="$IMAGE_REFS_FILE"
|
||||
jq --null-input --arg version "$(sed 's/^[^@]*@//' < "$IMAGE_REFS_FILE")" '$version'
|
||||
jq --null-input --arg version "$(sed 's/^[^@]*@//' < "$IMAGE_REFS_FILE")" '{"digest": $version}' | jq -r tostring
|
||||
|
|
Reference in a new issue