We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11057fc commit de1668dCopy full SHA for de1668d
.github/workflows/website-deployment.yml
@@ -40,9 +40,11 @@ jobs:
40
env:
41
USE_SSH: true
42
GIT_USER: git
43
+ NAME: ${{ secrets.GH_PAGES_DEPLOY_NAME }}
44
+ EMAIL: ${{ secrets.GH_PAGES_DEPLOY_EMAIL }}
45
run: |
- git config --global user.email "actions@gihub.com"
- git config --global user.name "gh-actions"
46
+ git config --global user.email "$EMAIL"
47
+ git config --global user.name "$NAME"
48
yarn deploy
49
50
website/README.md
@@ -8,7 +8,7 @@ Built using [Docusaurus 2](https://v2.docusaurus.io/).
8
### Installation
9
10
```
11
-$ yarn
+$ yarn install
12
13
14
### Run locally
0 commit comments