Skip to content

Commit 1b410ec

Browse files
committed
fix collectstatic step in ci job
1 parent c759d2d commit 1b410ec

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
uses: actions/setup-python@v2
2121
with:
2222
python-version: "3.12"
23+
24+
- name: Install system dependencies
25+
run: sudo apt-get update && sudo apt-get install -y gdal-bin libgdal-dev
2326

2427
- name: Install Poetry
2528
run: |
@@ -53,4 +56,5 @@ jobs:
5356
run: poetry run black .
5457

5558
- name: Collect static files
56-
run: poetry run python manage.py collectstatic --noinput
59+
run: poetry run python manage.py collectstatic --noinput
60+
working-directory: demo/

0 commit comments

Comments
 (0)