File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ jobs:
106106 # Binaries x86_64
107107 # TODO: add the rest of binaries
108108 # NOTE that we are not making the attestation fail if the material is not found. We will fail on "att push"
109- echo -n '${{ steps.release.outputs.artifacts }}' | jq -r '.[] | select(.type=="Binary" and .goos=="linux" and .goarch=="amd64" ) | { "name": "\(.extra.ID)-\(.goos)-\(.goarch)", "path":"\(.path)"} | @base64' | while read i; do
109+ echo -n '${{ steps.release.outputs.artifacts }}' | jq -r '.[] | select(.type=="Binary" and .goos=="linux") | { "name": "\(.extra.ID)-\(.goos)-\(.goarch)", "path":"\(.path)"} | @base64' | while read i; do
110110 BINARY_NAME=$(echo "${i}" | base64 --decode | jq -r ${1} .name)
111111 BINARY_PATH=$(echo "${i}" | base64 --decode | jq -r ${1} .path)
112112 chainloop attestation add --name ${BINARY_NAME} --value ${BINARY_PATH} || true
You can’t perform that action at this time.
0 commit comments