We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f38c3 commit e6c3488Copy full SHA for e6c3488
.github/actions/download-pre-built-deps/action.yml
@@ -49,16 +49,16 @@ runs:
49
computedHash=$(sha256sum "$downloadFilename" | awk '{print $1}')
50
destDir=/tmp/deps
51
fi
52
- echo 👀 Check Hash"...
+ echo 👀 Check Hash...
53
if [[ "$computedHash" == "$downloadHash" ]]; then
54
mkdir "$destDir"
55
tar -xzf "$downloadFilename" -C "$destDir"
56
if [[ ${{ inputs.os }} != 'windows' ]]; then
57
chmod +x "$destDir"/bin/*
58
59
- echo ✅ Hash check passed."
+ echo ✅ Hash check passed.
60
echo "cmake-args="-DUSE_PRE_BUILT_DEPS=ON -DPRE_BUILT_DEPS_DIR=$destDir"" >> $GITHUB_OUTPUT
61
else
62
- echo ❌ Hash check failed."
+ echo ❌ Hash check failed.
63
echo "cmake-args=" >> $GITHUB_OUTPUT
64
0 commit comments