File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed
Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,25 @@ jobs:
1313 steps :
1414 - uses : actions/checkout@v4
1515
16- - uses : actions/setup-python@v4
16+ - uses : actions/setup-python@v5
1717 with :
1818 python-version : ' 3.10'
1919
20- - name : Build site
21- run : make build
20+ - id : install-pipenv
21+ name : Install pipenv
22+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
23+ shell : bash
24+
25+ - id : install-python-dependencies
26+ name : Install Python dependencies
27+ run : pipenv sync --dev
28+ shell : bash
29+
30+ - id : build-sphinx-documentation
31+ name : Build Sphinx documentation
32+ run : pipenv run make build
33+ shell : bash
34+ working-directory : docs
2235 env :
2336 RDP_APP_KEY : ${{ secrets.RDP_APP_KEY }}
2437 RDP_USERNAME : ${{ secrets.RDP_USERNAME }}
You can’t perform that action at this time.
0 commit comments