From 51af8c0c20f185a26f2ace14f35e4f88e8b1d123 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Wed, 30 Oct 2024 13:14:17 +0000 Subject: [PATCH] debug commit --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c71d592..06fb0d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,8 +58,8 @@ jobs: with: build: -s python -o dist upload: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }} - - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} - uses: casperdcl/deploy-pypi@v2 - with: - url: https://test.pypi.org/legacy/ - password: ${{ secrets.TEST_PYPI_TOKEN }} + - name: test pypi + run: python -m twine upload --verbose dist/* + env: + TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/ + TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}