[CI] move things around
Some checks failed
Build / Build (push) Failing after 16s

This commit is contained in:
Marius Alwan Meyer 2023-07-20 23:24:35 +00:00
parent ff1f770ec0
commit d3c861a069

View File

@ -31,7 +31,8 @@ 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)"
FILES=$(find . -name build.yml -o -name west.yml -type f -exec sha256sum \; | sort)
HASH="$(echo -n $FILES | sha256sum | head -c 64)"
echo "hash=$HASH" >> "$GITHUB_OUTPUT"
echo "computed hash: $HASH"