We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8402403 + 662f87f commit 5588780Copy full SHA for 5588780
1 file changed
.github/workflows/deploy_documentation.yaml
@@ -28,11 +28,16 @@ jobs:
28
cache: 'pnpm'
29
cache-dependency-path: adminforth/pnpm-lock.yaml
30
31
+ - name: Configure Git
32
+ run: |
33
+ git config --global user.name "${{ github.actor }}"
34
+ git config --global user.email "${{ github.actor }}@users.noreply.github.com"
35
+
36
- name: Install dependencies
37
run: |
38
pnpm i
39
cd documentation
40
npm ci
41
42
- name: Build and deploy docs
- run: pnpm rollout-doc
43
+ run: GIT_USER=${{ github.actor }} GIT_PASS=${{ secrets.DOCUSAURUS_DEPLOY_KEY }} pnpm rollout-doc
0 commit comments