From 6bb0678c96acf0b8320b819fac901ffc0cfed734 Mon Sep 17 00:00:00 2001 From: guinpen98 <83969826+guinpen98@users.noreply.github.com> Date: Thu, 11 Jan 2024 01:51:04 +0900 Subject: [PATCH] fix: doxygen path --- .github/workflows/generate-doxygen.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-doxygen.yml b/.github/workflows/generate-doxygen.yml index ac696c625..3ae758e93 100644 --- a/.github/workflows/generate-doxygen.yml +++ b/.github/workflows/generate-doxygen.yml @@ -5,6 +5,9 @@ on: branches: - main +env: + DOXYGEN_DOCS: ${{github.workspace}}/Documents/Doxygen + jobs: build: runs-on: ubuntu-20.04 @@ -18,11 +21,11 @@ jobs: - name: Generate Documentation run: | - cd ${{github.workspace}}/Document/Doxygen + cd $DOXYGEN_DOCS doxygen Doxyfile - name: Deploy to GitHub Pages uses: JamesIves/github-pages-deploy-action@v4.4.3 with: branch: gh-pages - folder: ${{github.workspace}}/Document/Doxygen/html + folder: $DOXYGEN_DOCS/html