[CI] escape gnarly bash code
Some checks failed
Build / Build (push) Failing after 11s

This commit is contained in:
Marius Alwan Meyer 2023-07-20 23:22:04 +00:00
parent e6e407b0ae
commit ff1f770ec0

View File

@ -31,7 +31,7 @@ jobs:
id: hash-west
run: |
FILE_PATH=zephyr/west.yml
HASH=$(sha256sum <(find . -name build.yml -o -name west.yml -type f -exec sha256sum \; | sort) | head -c 64)
HASH="$(sha256sum <(find . -name build.yml -o -name west.yml -type f -exec sha256sum \; | sort) | head -c 64)"
echo "hash=$HASH" >> "$GITHUB_OUTPUT"
echo "computed hash: $HASH"