Skip to content

Commit

Permalink
fixed deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Aug 5, 2024
1 parent 7cecc1d commit 6d3a9f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 0 # Ensure full history is available for branch checkout

- name: Install Doxygen and Dependencies
run: sudo apt-get install -y doxygen graphviz texlive
Expand All @@ -37,10 +37,10 @@ jobs:
# Ensure the docs directory is prepared
mkdir -p docs/$dest
# Move generated files to the correct directory
mv docs/* docs/$dest/
# Move all generated files into the correct subdirectory
cp -r docs/* docs/$dest/
# Clear out the previous docs for the next iteration
# Clean up to prepare for the next branch
rm -rf docs/*
echo "Generated docs for $branch, deployed to docs/$dest"
Expand Down

0 comments on commit 6d3a9f3

Please sign in to comment.