Skip to content

Commit

Permalink
try installing wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelrios committed Jul 29, 2024
1 parent 6bbf62b commit c03a667
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Install requirements
run: |
pip install --upgrade pip
pip install wheel
pip install -r requirements.txt
- name: Set env vars
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/staging-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
port: ${{ secrets.CLOUD_SQL_DATABASE_PORT }}

- name: Install requirements
run: pip install -r requirements.txt
run: |
pip install wheel
pip install -r requirements.txt
- name: Set env vars
run: |
Expand Down

0 comments on commit c03a667

Please sign in to comment.