We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e728a4 commit 2a5a21aCopy full SHA for 2a5a21a
.github/workflows/build-deploy-docs.yml
@@ -14,7 +14,7 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- name: Get repository
17
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
18
19
- name: Set up Python environment
20
uses: actions/setup-python@v4
@@ -30,14 +30,14 @@ jobs:
30
31
- name: Install RDFM server in venv
32
run: |
33
- poetry -C server/ install
+ poetry --project server/ install
34
35
- name: Build RDFM documentation
36
37
- poetry -C server/ run .github/scripts/build-docs.sh
+ poetry --project server/ run .github/scripts/build-docs.sh
38
39
- name: "Upload artifact: Sphinx HTML and PDF"
40
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
41
with:
42
name: Documentation
43
path: documentation/build/
0 commit comments