Skip to content

Commit 8589318

Browse files
authored
Create documentationjs.yml
1 parent 9322109 commit 8589318

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/documentationjs.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy documentation.js on GitHub pages
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Build documentation
14+
uses: zakodium/documentationjs-action@v1
15+
- name: Deploy to GitHub pages
16+
uses: JamesIves/github-pages-deploy-action@releases/v4
17+
with:
18+
token: ${{ secrets.BOT_TOKEN }}
19+
branch: gh-pages
20+
folder: docs
21+
clean: true

0 commit comments

Comments
 (0)