Skip to content

Commit

Permalink
fix for env with pypi package builds (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs authored Jun 4, 2024
1 parent a7e8894 commit 4d923d5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,15 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install python env
uses: ./.github/actions/install-python-env
- name: Python setup
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Setup for poetry
run: |
python -m pip install poetry
- name: Install environment
run: poetry install --no-interaction --no-ansi
- name: poetry build distribution content
run: poetry build
- name: Publish package distributions to PyPI
Expand Down

0 comments on commit 4d923d5

Please sign in to comment.