Skip to content

Commit

Permalink
fix(typedoc): github action to push typedoc to github
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Han committed Oct 24, 2021
1 parent 2d54128 commit 4573d19
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ jobs:
with:
node-version: lts/*
- run: npm ci
- name: 'Generate TypeDocs'
- run: npm run docs
- name: 'Commit & Push TypeDocs'
- run: |
git config --global user.name 'Sean Han'
git config --global user.email '[email protected]'
git commit -am "Autogenerated TypeDocs"
git push
- uses: actions/download-artifact@v2
with:
name: build
Expand Down

0 comments on commit 4573d19

Please sign in to comment.