We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 247b608 commit 82361eaCopy full SHA for 82361ea
.github/workflows/documentation.yml
@@ -8,17 +8,12 @@ jobs:
8
deploy:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
12
- - name: Set up Python
13
- uses: actions/setup-python@v2
14
- with:
15
- python-version: '3.9'
16
- - name: Install dependencies
17
- run: |
18
- python -m pip install --upgrade pip
19
- pip install setuptools wheel
20
- pip install -r requirements-dev.txt
21
- pip install -e .
22
- - name: Deploy to GitHub Pages
23
24
- mkdocs gh-deploy
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements-dev.txt
+ pip install -e .
+ - run: mkdocs gh-deploy --force
0 commit comments