summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/doxygen.yml12
1 files changed, 8 insertions, 4 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml
index 3313964..3593ce9 100644
--- a/.github/workflows/doxygen.yml
+++ b/.github/workflows/doxygen.yml
@@ -8,7 +8,7 @@ on:
workflow_dispatch:
permissions:
- contents: read
+ contents: write
pages: write
id-token: write
@@ -59,8 +59,12 @@ jobs:
python3 m.css/documentation/doxygen.py Doxyfile
- name: Deploy to GitHub Pages
- uses: peaceiris/actions-gh-pages@v4
+ uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: docs/html
- publish_branch: gh-pages \ No newline at end of file
+ publish_dir: ./documentation/html
+ publish_branch: gh-pages
+ user_name: 'github-actions[bot]'
+ user_email: 'github-actions[bot]@users.noreply.github.com'
+ commit_message: ${{ github.event.head_commit.message }}
+ full_commit_message: ${{ github.event.head_commit.message }} \ No newline at end of file