Skip to content

Commit

Permalink
Clean up and fix make target
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Feb 11, 2024
1 parent c4b04a9 commit c72e567
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # Updated to use v4
- name: List directory contents
run: ls -la "$GITHUB_WORKSPACE"
- uses: actions/checkout@v4
- name: List Documentation Folder
run: ls -la "$GITHUB_WORKSPACE/doc"
- name: Set up Python
uses: actions/setup-python@v3
with:
Expand All @@ -26,9 +26,9 @@ jobs:
- name: Check docs directory and Build Documentation
run: |
if [ -d "$GITHUB_WORKSPACE/doc" ]; then
cd "$GITHUB_WORKSPACE/doc" && ls -la && make doc
cd "$GITHUB_WORKSPACE/doc" && make html
else
echo "Documentation directory not found!"
echo "No Documenation Found!"
exit 1
fi
- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit c72e567

Please sign in to comment.