From e7f69f52ca75b3a52b1f1fd8a01fc9e58e7d98c1 Mon Sep 17 00:00:00 2001 From: Chris Chen Date: Fri, 28 Nov 2025 14:15:40 +0800 Subject: [PATCH] fix error in worklfow --- .github/workflows/doxygen.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 9a195fc3..f513713a 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -25,7 +25,10 @@ jobs: with: ref: ${{ github.event.inputs.branch_name }} fetch-depth: 0 # fetch all commits/branches for gitversion - + + - name: Setup Git config + run: git config user.name ChrisChen2023 && git config user.email chris.chen@vesoft.com + - name: Install Doxygen run: | sudo apt-get update @@ -43,5 +46,5 @@ jobs: - name: Deploy to gh-pages uses: JamesIves/github-pages-deploy-action@v4 with: - folder: ${PYTHON_VERSION}/html - target-folder: ${PYTHON_VERSION} \ No newline at end of file + folder: ${{ env.PYTHON_VERSION }}/html + target-folder: ${{ env.PYTHON_VERSION }} \ No newline at end of file