We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875d1ef commit afed636Copy full SHA for afed636
1 file changed
.github/workflows/doc.yml
@@ -9,7 +9,7 @@ on:
9
workflow_dispatch:
10
11
permissions:
12
- contents: read
+ contents: write
13
pages: write
14
id-token: write
15
@@ -37,6 +37,11 @@ jobs:
37
- name: Build VitePress Docs
38
run: npm run docs:build
39
40
+ - name: Configure Git
41
+ run: |
42
+ git config user.name "$GITHUB_ACTOR"
43
+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
44
+
45
- name: Deploy to GitHub Pages
46
uses: peaceiris/actions-gh-pages@v3
47
with:
0 commit comments