Skip to content

Commit

Permalink
install poetry in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
yurijmikhalevich committed Aug 1, 2023
1 parent 10b2962 commit db400bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
python-version: 3.8
cache: poetry
- name: Install dependencies
run: poetry install
run: |
python -m pip install --upgrade pip
pip install --upgrade poetry
poetry install
- name: Build and publish
run: poetry publish --build

Expand Down

0 comments on commit db400bf

Please sign in to comment.