Skip to content

Commit aad07eb

Browse files
fix error in worklfow (#384)
1 parent ea0f260 commit aad07eb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/doxygen.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
with:
2626
ref: ${{ github.event.inputs.branch_name }}
2727
fetch-depth: 0 # fetch all commits/branches for gitversion
28-
28+
29+
- name: Setup Git config
30+
run: git config user.name ChrisChen2023 && git config user.email [email protected]
31+
2932
- name: Install Doxygen
3033
run: |
3134
sudo apt-get update
@@ -43,5 +46,5 @@ jobs:
4346
- name: Deploy to gh-pages
4447
uses: JamesIves/github-pages-deploy-action@v4
4548
with:
46-
folder: ${PYTHON_VERSION}/html
47-
target-folder: ${PYTHON_VERSION}
49+
folder: ${{ env.PYTHON_VERSION }}/html
50+
target-folder: ${{ env.PYTHON_VERSION }}

0 commit comments

Comments
 (0)