Fix missing command.

This commit is contained in:
awalsh128 2021-10-16 22:04:08 -07:00
parent 9c18c92e77
commit 7313869349

View file

@ -31,7 +31,7 @@ runs:
- name: Create Cache Key
run: |
normalized_list=$(${{ inputs.packages }} | sed 's/[\s,]+/ /g' | sort)
normalized_list=$(echo ${{ inputs.packages }} | sed 's/[\s,]+/ /g' | sort)
value=$(echo $normalized_list @ ${{ inputs.version }})
echo "CACHE_KEY=$(echo value | md5sum | /bin/cut -f1 -d' ')" >> $GITHUB_ENV
shell: bash