Skip to content

Commit

Permalink
Test new action approach5
Browse files Browse the repository at this point in the history
  • Loading branch information
g-goulis committed Sep 23, 2024
1 parent 2585a11 commit aea3abc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ jobs:

- name: Verify Javadoc
run: |
if [ ! -d target/site/apidocs ]; then
echo "Javadoc failed to compile!"
if [ -d target/site/apidocs ]; then
echo "Javadoc generated successfully."
else
echo "Javadoc failed to generate!"
exit 1
fi
Expand Down

0 comments on commit aea3abc

Please sign in to comment.