Skip to content

Commit

Permalink
bugfix: Force poetry lock to fix issue (#4)
Browse files Browse the repository at this point in the history
* task: Forced poetry lock

* task: Rollback to trigger on push

* task: $GITHUB_ENV no longer needed
  • Loading branch information
adrianmf94 authored Jun 21, 2024
1 parent c6aed06 commit b57ce85
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}

# Install & configure poetry
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: false
virtualenvs-in-project: false

# Run Poetry lock --no-update
- name: Poetry Lock
run: |
poetry lock --directory backend --no-update
# Create and activate the virtual environment
- name: Set up Python virtual environment
run: |
Expand Down

0 comments on commit b57ce85

Please sign in to comment.