From 736adba8cd18c5ee19dd486bde97a8ec05fbd3f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jolain?= <4466185+FrancoisJ@users.noreply.github.com> Date: Tue, 10 Mar 2020 17:09:16 +0100 Subject: [PATCH] Fix error in cd --- .github/workflows/prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 31c66b4..636238e 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -51,6 +51,6 @@ jobs: export PYTHONPATH=$(pwd) pip install setuptools wheel twine python3 setup.py sdist bdist_wheel - python3 -m twine upload --repository-url https://pypi.org/legacy/ dist/* -u __token__ -p $PYPI_PROD_TOKEN + python3 -m twine upload dist/* -u __token__ -p $PYPI_PROD_TOKEN env: PYPI_PROD_TOKEN: ${{ secrets.PYPI_PROD_TOKEN }} \ No newline at end of file