We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdde63e commit d7d4563Copy full SHA for d7d4563
1 file changed
.github/workflows/doxygen.yml
@@ -27,11 +27,6 @@ jobs:
27
- name: Generate Doxygen HTML
28
run: doxygen ./Doxyfile
29
30
- - name: Setup Git for Deployment
31
- run: |
32
- git config user.name "github-actions[bot]"
33
- git config user.email "github-actions[bot]@users.noreply.github.com"
34
-
35
- name: Clone docs branch
36
run: |
37
git clone --branch docs https://x-access-token:${{ secrets.USER_SECRET }}@github.com/${{ github.repository }} docs-out
@@ -44,6 +39,8 @@ jobs:
44
39
- name: Commit & Push
45
40
working-directory: docs-out
46
41
42
+ git config user.name "github-actions[bot]"
43
+ git config user.email "github-actions[bot]@users.noreply.github.com"
47
git add .
48
git commit -m "Regenerate Doxygen docs from ${{ github.sha }}" || echo "No changes to commit"
49
git push
0 commit comments