cache-apt-pkgs-action/create_cache_key.sh
2021-10-21 15:54:29 -07:00

23 lines
No EOL
582 B
Bash
Executable file

#!/bin/bash
# Fail on any error.
set -e
version=$1
packages=${@:2}
echo "::group::Create Cache Key"
# Remove package delimiters, sort (requires newline) and then convert back to inline list.
normalized_list=$(echo $packages | sed 's/[\s,]+/ /g' | tr ' ' '\n' | sort | tr '\n' ' ')
echo "::debug::Normalized package list is '$normalized_list'."
value=$(echo $normalized_list @ $version)
echo "::debug::Value to hash is '$value'."
key=$(echo $value | md5sum | /bin/cut -f1 -d' ')
echo "::debug::Value hashed as '$key'."
echo "::endgroup::"
echo "CACHE_KEY=$key" >> $GITHUB_ENV