diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 4d090e5..881ffc7 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -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