From ecbb34a9ddf719700fa9bffe64c9292f51ec2b9f Mon Sep 17 00:00:00 2001 From: barrust Date: Mon, 5 Sep 2022 11:01:53 -0400 Subject: [PATCH] attempt to figure out publish issues --- .github/workflows/publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6ff9cc5..f2e9beb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,13 +20,13 @@ jobs: python-version: '3.x' - name: Install dependencies run: | - python3 -m pip install --upgrade pip - python3 -m pip install --upgrade build - python3 -m pip install --upgrade twine + python -m pip install --upgrade pip + pip install --upgrade twine build - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - python3 -m build - python3 -m twine upload dist/* + python -m build + twine check dist/* + twine upload dist/*