We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb0c8f0 commit d60e162Copy full SHA for d60e162
.github/workflows/testing.yml
@@ -17,3 +17,14 @@ jobs:
17
run: make lint
18
- name: Test
19
run: make tests
20
+ # add docs for the time, in testing, later move to deploy
21
+ - name: Build Docs
22
+ run: |
23
+ make docs
24
+ touch docs/build/html/.nojekyll
25
+ - name: Deploy Docs
26
+ uses: peaceiris/actions-gh-pages@v2.5.0
27
+ env:
28
+ PERSONAL_TOKEN: ${{ secrets.ACCESS_TOKEN }}
29
+ PUBLISH_BRANCH: gh-pages
30
+ PUBLISH_DIR: docs/build/html
0 commit comments