diff --git a/.github/workflows/docs-and-testcov.yml b/.github/workflows/docs-and-testcov.yml index ff6c445..9820b86 100644 --- a/.github/workflows/docs-and-testcov.yml +++ b/.github/workflows/docs-and-testcov.yml @@ -116,11 +116,11 @@ jobs: echo "" > target/doc/index.html touch target/doc/.nojekyll - # verify that .github exists in the output directory - - name: Verify .github directory + # verify that logo exists in the output directory + - name: Verify logo directory run: | - if [ ! -d target/doc/docs/.github ]; then - echo ".github directory not found in output!" + if [ ! -f target/doc/docs/rustframe_logo.png ]; then + echo "Logo not found in output directory!" exit 1 fi