From bfa246608ce5307e4985dcfd6b2f82f1e979beac Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 6 Aug 2024 21:08:43 -0700 Subject: [PATCH] New docs build --- .github/workflows/core_build.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/core_build.yml b/.github/workflows/core_build.yml index 48e422f289..2b1404b02b 100644 --- a/.github/workflows/core_build.yml +++ b/.github/workflows/core_build.yml @@ -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 "action@github.com" - 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