From 695a4e7eb8a8c8ded7bc335776e9f6be45f1daf4 Mon Sep 17 00:00:00 2001 From: Henrique Bastos Date: Wed, 7 Feb 2024 22:40:39 -0300 Subject: [PATCH] Fix publish --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cc0fcbd..4e144de 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,13 +22,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools wheel poetry + pip install build poetry poetry install - name: Run tests run: | poetry run pytest - name: Build package run: | - python -m build sdist + python -m build - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1