Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jegork committed Jun 8, 2024
1 parent 28eadf3 commit a4c0038
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ jobs:
python-version: '3.12'
cache: 'poetry'
- name: Install dependencies
run: poetry install && echo "VERSION=$(poetry version --short)" >> $GITHUB_ENV
run: |
poetry install
poetry self add poetry-dynamic-versioning[plugin]
echo "VERSION=$(poetry version --short)" >> $GITHUB_ENV
- name: Build
run: poetry build
- name: Store the distribution packages
Expand Down

0 comments on commit a4c0038

Please sign in to comment.