Skip to content

Commit

Permalink
fix requirement file path
Browse files Browse the repository at this point in the history
  • Loading branch information
bruecksen authored May 31, 2024
1 parent 3c5f521 commit b187011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements/production.txt
- name: Run Tests
run: |
python manage.py test
Expand All @@ -40,7 +40,7 @@ jobs:
cd /home/django/bakeup/ &&
git pull origin main &&
source /home/django/djangoenv/bin/activate &&
pip install -r requirements.txt &&
pip install -r requirements/production.txt &&
python manage.py migrate &&
python collectstatic --noinput &&
supervisorctl restart django
Expand Down

0 comments on commit b187011

Please sign in to comment.