Skip to content

Commit 4573d19

Browse files
author
Sean Han
committed
fix(typedoc): github action to push typedoc to github
1 parent 2d54128 commit 4573d19

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ jobs:
3030
with:
3131
node-version: lts/*
3232
- run: npm ci
33+
- name: 'Generate TypeDocs'
3334
- run: npm run docs
35+
- name: 'Commit & Push TypeDocs'
36+
- run: |
37+
git config --global user.name 'Sean Han'
38+
git config --global user.email '[email protected]'
39+
git commit -am "Autogenerated TypeDocs"
40+
git push
3441
- uses: actions/download-artifact@v2
3542
with:
3643
name: build

0 commit comments

Comments
 (0)