We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08efeda commit 764823dCopy full SHA for 764823d
1 file changed
.github/actions/docs.yml
@@ -0,0 +1,21 @@
1
+name: Documentation
2
+on:
3
+ push:
4
+ branches:
5
+ - dev
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/setup-python@v2
11
+ - uses: actions/checkout@master
12
+ with:
13
+ fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
14
+ - name: Build and Commit
15
+ uses: sphinx-notes/pages@v2
16
+ - name: Push changes
17
+ uses: ad-m/github-push-action@master
18
19
+ github_token: ${{ secrets.GITHUB_TOKEN }}
20
+ branch: gh-pages
21
+ documentation_path: './docs'
0 commit comments