From a7ded93f29077e1ac8d21190a5ee4fbff90f203f Mon Sep 17 00:00:00 2001 From: matthewtrotter Date: Mon, 5 Sep 2022 17:00:38 -0500 Subject: [PATCH] feat(semantic-release): manually define credientials --- .github/workflows/python-lib.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-lib.yaml b/.github/workflows/python-lib.yaml index 2327a67..d65f7e5 100644 --- a/.github/workflows/python-lib.yaml +++ b/.github/workflows/python-lib.yaml @@ -46,7 +46,7 @@ jobs: - name: Build artifacts run: python -m build - name: Push to PyPi - run: python3 -m twine upload --verbose --repository testpypi dist/* + run: python3 -m twine upload --verbose --repository-url https://test.pypi.org/legacy/ --username $TWINE_USERNAME --password $TWINE_PASSWORD dist/* env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}