diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 60724cfb..c40f56e8 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,12 +19,16 @@ jobs: with: python-version: '3.11' - - name: Install pep517 + - name: Install Poetry run: | - python -m pip install pep517 --user - + curl -sSL https://install.python-poetry.org | python3 - + echo "$HOME/.local/bin" >> $GITHUB_PATH + + - name: Install dependencies + run: poetry install + - name: Build a binary wheel and a source tarball - run: python -m pep517.build . + run: poetry build - name: Publish distribution 📦 to Test PyPI uses: pypa/gh-action-pypi-publish@release/v1