Skip to content

Commit

Permalink
install deps on deploy
Browse files Browse the repository at this point in the history
If the requirements.txt is changed in the repo, the new dependencies need to be installed on the production server.
This didn't happen with #106 hence the fix didn't affect the actual docs page.
  • Loading branch information
hughrun committed Nov 11, 2023
1 parent 1bd8b9b commit 0e88e73
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy to server
id: deploy
uses: Pendect/[email protected]
Expand Down

0 comments on commit 0e88e73

Please sign in to comment.