Skip to content

Commit

Permalink
fix collectstatic step in ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
erdem committed Jul 9, 2024
1 parent c759d2d commit 1b410ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: "3.12"

- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y gdal-bin libgdal-dev

- name: Install Poetry
run: |
Expand Down Expand Up @@ -53,4 +56,5 @@ jobs:
run: poetry run black .

- name: Collect static files
run: poetry run python manage.py collectstatic --noinput
run: poetry run python manage.py collectstatic --noinput
working-directory: demo/

0 comments on commit 1b410ec

Please sign in to comment.