Skip to content

Commit 2a5a21a

Browse files
committed
[#69784] GHA: Replaced poetry's "-C" flag with "--project" after switching to 2.x version
Signed-off-by: Grzegorz Latosinski <glatosinski@antmicro.com>
1 parent 5e728a4 commit 2a5a21a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-deploy-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Get repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Set up Python environment
2020
uses: actions/setup-python@v4
@@ -30,14 +30,14 @@ jobs:
3030

3131
- name: Install RDFM server in venv
3232
run: |
33-
poetry -C server/ install
33+
poetry --project server/ install
3434
3535
- name: Build RDFM documentation
3636
run: |
37-
poetry -C server/ run .github/scripts/build-docs.sh
37+
poetry --project server/ run .github/scripts/build-docs.sh
3838
3939
- name: "Upload artifact: Sphinx HTML and PDF"
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: Documentation
4343
path: documentation/build/

0 commit comments

Comments
 (0)