File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed
Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1+ name : Documentation
2+
3+ on :
4+ push :
5+ tags :
6+ - " *"
7+ branches : [ main, master ]
8+
9+ jobs :
10+ deploy :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Set up Python
15+ uses : actions/setup-python@v2
16+ with :
17+ python-version : ' 3.9'
18+ - name : Install dependencies
19+ run : |
20+ python -m pip install --upgrade pip
21+ pip install setuptools wheel
22+ pip install -r requirements-dev.txt
23+ - name : Deploy to GitHub Pages
24+ run : |
25+ mkdocs gh-deploy
Original file line number Diff line number Diff line change 66
77jobs :
88 deploy :
9-
109 runs-on : ubuntu-latest
11-
1210 steps :
1311 - uses : actions/checkout@v2
1412 - name : Set up Python
Original file line number Diff line number Diff line change 99jobs :
1010 build-windows :
1111 runs-on : windows-latest
12-
1312 steps :
1413 - uses : actions/checkout@v2
1514 - name : Set up Python 3.9
2726
2827 build-linux :
2928 runs-on : ubuntu-latest
30-
3129 steps :
3230 - uses : actions/checkout@v2
3331 - name : Set up Python 3.9
You can’t perform that action at this time.
0 commit comments