From 5a4be80219b66b54933edbd62ae6ec09a8f47fed Mon Sep 17 00:00:00 2001 From: Nick Moreton Date: Sun, 23 Oct 2022 17:25:37 +0100 Subject: [PATCH] Correct publish script --- .github/workflows/publish.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 48244c1..0742c41 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,13 +20,12 @@ jobs: with: python-version: '3.8' - - name: Install Poetry - uses: abatilo/actions-poetry@v2.0.0 - with: - poetry-version: 1.1.15 - - - name: Build distribution - run: poetry build + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install wheel + - name: Build + run: python setup.py sdist bdist_wheel - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1