Skip to content

Commit

Permalink
Fix premature exit in backend build
Browse files Browse the repository at this point in the history
  • Loading branch information
vjf authored Aug 29, 2024
1 parent 43b0f9a commit effab4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
# Remove old venv
pdm venv remove -y for-backend-build
pdm venv remove -y for-backend-build 2>/dev/null || pdm venv list
# Create new venv
pdm venv create --with-pip --name for-backend-build 3.10
eval $(pdm venv activate for-backend-build)
Expand Down

0 comments on commit effab4e

Please sign in to comment.