From ab561b53bdce4e2fb3b5e966ef15cebdfd082d09 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Wed, 24 Nov 2021 13:17:56 +0000 Subject: [PATCH] Correct CI's invocation of twine --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9e461d..7ff4a03 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: run: "python -m build" - name: "Upload to PyPI" - run: "python -m twine --repository testpypi upload dist/*" + run: "python -m twine upload --repository testpypi dist/*" env: TWINE_USERNAME: "__token__" TWINE_PASSWORD: "${{ secrets.TESTPYPI_API_TOKEN }}" \ No newline at end of file