From 3f1c500a69e90300056b7098b7a85ebe3efc19b5 Mon Sep 17 00:00:00 2001 From: Tim Schwenke Date: Mon, 22 Aug 2022 21:39:26 +0200 Subject: [PATCH] ci: Rename poetry repo for TestPyPI --- .github/workflows/release-testpypi.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-testpypi.yaml b/.github/workflows/release-testpypi.yaml index b7c3ae0..4cadd84 100644 --- a/.github/workflows/release-testpypi.yaml +++ b/.github/workflows/release-testpypi.yaml @@ -30,9 +30,9 @@ jobs: run: curl -sSL https://install.python-poetry.org | python - - name: Configure Poetry repo for TestPyPI - run: poetry config repositories.test-pypi https://test.pypi.org/legacy/ + run: poetry config repositories.testpypi https://test.pypi.org/legacy/ - name: Publish to TestPyPI with Poetry - run: poetry publish --build -n -r test-pypi -u __token__ -p "$TOKEN" + run: poetry publish --build -n -r testpypi -u __token__ -p "$TOKEN" env: TOKEN: ${{ secrets.TESTPYPI_TOKEN }}