Skip to content

Commit 23c8c3f

Browse files
committed
Try agasin
1 parent b9c0043 commit 23c8c3f

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.github/workflows/continuous-deployment.yaml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)