Skip to content

Commit de1668d

Browse files
author
Krzysztof
authored
chore: fix gh action (#373)
1 parent 11057fc commit de1668d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/website-deployment.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ jobs:
4040
env:
4141
USE_SSH: true
4242
GIT_USER: git
43+
NAME: ${{ secrets.GH_PAGES_DEPLOY_NAME }}
44+
EMAIL: ${{ secrets.GH_PAGES_DEPLOY_EMAIL }}
4345
run: |
44-
git config --global user.email "actions@gihub.com"
45-
git config --global user.name "gh-actions"
46+
git config --global user.email "$EMAIL"
47+
git config --global user.name "$NAME"
4648
yarn deploy
4749
4850

website/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Built using [Docusaurus 2](https://v2.docusaurus.io/).
88
### Installation
99

1010
```
11-
$ yarn
11+
$ yarn install
1212
```
1313

1414
### Run locally

0 commit comments

Comments
 (0)