Update verification step to check for logo presence in output directory

This commit is contained in:
Palash Tyagi 2025-05-05 03:32:57 +01:00
parent 38baf0c648
commit 1c41d387ef

View File

@ -116,11 +116,11 @@ jobs:
echo "<meta http-equiv=\"refresh\" content=\"0; url=docs\">" > target/doc/index.html echo "<meta http-equiv=\"refresh\" content=\"0; url=docs\">" > target/doc/index.html
touch target/doc/.nojekyll touch target/doc/.nojekyll
# verify that .github exists in the output directory # verify that logo exists in the output directory
- name: Verify .github directory - name: Verify logo directory
run: | run: |
if [ ! -d target/doc/docs/.github ]; then if [ ! -f target/doc/docs/rustframe_logo.png ]; then
echo ".github directory not found in output!" echo "Logo not found in output directory!"
exit 1 exit 1
fi fi