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.
2 parents 43bf4dd + 22b9751 commit f0308dfCopy full SHA for f0308df
.github/workflows/docs.yml
@@ -0,0 +1,30 @@
1
+name: Publish docs
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ workflow_dispatch: {}
8
9
+jobs:
10
+ docs:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Setup Python
15
+ uses: actions/setup-python@v2
16
+ with:
17
+ python-version: 3.9
18
+ - name: Install OS packages
19
+ run: |
20
+ sudo apt-get -y update
21
+ sudo apt-get install -y libkrb5-dev
22
+ - name: Install Tox
23
+ run: pip install tox 'virtualenv<20.21.1'
24
+ - name: Run Tox
25
+ run: tox -e docs
26
+ - name: Publish
27
+ uses: JamesIves/[email protected]
28
29
+ branch: gh-pages
30
+ folder: docs/_build/html
0 commit comments