updated docs #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate docs | |
on: | |
push: | |
branches: [master] | |
jobs: | |
Start: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install dependencies | |
run: npm install | |
- name: Run tsc files | |
run: tsc | |
- name: Generate new docs | |
run: npm run docsgen | |
- name: Delete js-script | |
run: del js-script | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Genrated docs |