Skip to content

Commit 70fdbe6

Browse files
committed
feature: autodeploy docs to github pages
1 parent 8bc9541 commit 70fdbe6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/publish-docs.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Deploy docs to Github Pages
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
publish-docs:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v2
12+
- run: npm install
13+
- run: npm run typedoc
14+
- name: Deploy to GitHub Pages
15+
uses: JamesIves/[email protected]
16+
with:
17+
branch: gh-pages
18+
folder: docs

0 commit comments

Comments
 (0)