mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2024-12-22 10:45:29 +00:00
Fix missing command.
This commit is contained in:
parent
9c18c92e77
commit
7313869349
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue