diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index 58672df..7b86a7b 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -24,26 +24,9 @@ jobs: - name: Build package run: python -m build - - - name: Include README in distribution - run: | - cp README.md dist/ - - - name: Show repo - run: | - ls - ls dist/ - - name: Include main.py in distribution - run: cp main.py dist/ - - name: Publish package to PyPI run: python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/* env: TWINE_USERNAME: ${{ secrets.PYPI_USER }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - - - name: Show repo - run: | - ls - ls dist/