-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c12708
commit bfa2466
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,11 +109,13 @@ jobs: | |
- name: Checkout doxygen-awesome | ||
run: git clone https://github.com/jothepro/doxygen-awesome-css.git doxygen-awesome-css | ||
- name: Generate Documentation | ||
run: doxygen Doxyfile | ||
- name: Commit and Push Documentation | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add docs | ||
git commit -m "Update Doxygen documentation" | ||
git push -f origin HEAD:core-docs | ||
mkdir -p docs/core | ||
doxygen Doxyfile | ||
echo "Listing contents of docs/core:" | ||
ls -R docs/core || echo "No files found in docs/core" | ||
- name: Upload Doxygen Documentation as Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: doxygen-docs-core | ||
path: docs/core |