Create documentation deployment action
This commit is contained in:
parent
5db4cba740
commit
767c18b204
1 changed files with 18 additions and 0 deletions
18
.github/workflows/documentation.yml
vendored
Normal file
18
.github/workflows/documentation.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Generate documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js 14.x
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 14.x
|
||||
- run: npm run docs:deploy
|
Loading…
Reference in a new issue