Fix missing command.
This commit is contained in:
parent
9c18c92e77
commit
7313869349
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ runs:
|
||||||
|
|
||||||
- name: Create Cache Key
|
- name: Create Cache Key
|
||||||
run: |
|
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 }})
|
value=$(echo $normalized_list @ ${{ inputs.version }})
|
||||||
echo "CACHE_KEY=$(echo value | md5sum | /bin/cut -f1 -d' ')" >> $GITHUB_ENV
|
echo "CACHE_KEY=$(echo value | md5sum | /bin/cut -f1 -d' ')" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in a new issue