Skip to content

Commit

Permalink
Update static.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
avaneesh2001 authored Oct 6, 2024
1 parent 3f63dfa commit aa1b6e6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
with:
ref: main # Check out the main branch

- name: Install Doxygen
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz
- name: Generate Doxygen Documentation
run: |
# Run Doxygen to generate docs (adjust command if necessary)
Expand All @@ -45,5 +50,5 @@ jobs:
git config --local user.name "github-actions"
git config --local user.email "github-actions@github.com"
git add docs/
git commit -m "Update documentation"
git commit -m "Update documentation" || echo "No changes to commit"
git push origin gh-pages

0 comments on commit aa1b6e6

Please sign in to comment.