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