From ef86ed0bdff85570b5c7b0c1f6d32e28fc0b713f Mon Sep 17 00:00:00 2001 From: Umut Date: Wed, 26 Jan 2022 14:48:37 +0300 Subject: [PATCH] fix(ci): use --repository-url instead of -r for internal pypi release --- .github/workflows/continuous-integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 6972636a3..b3a0d22dc 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -796,7 +796,7 @@ jobs: run: | poetry run twine upload \ -u "${{ secrets.INTERNAL_PYPI_BOT_USERNAME }}" -p "${{ secrets.INTERNAL_PYPI_BOT_PASSWORD }}" \ - -r "${{ secrets.INTERNAL_PYPI_URL }}" "${{ env.ARTIFACTS_PACKAGED_DIR }}"/*.whl + --repository-url "${{ secrets.INTERNAL_PYPI_URL }}" "${{ env.ARTIFACTS_PACKAGED_DIR }}"/*.whl - name: Push release documentation if: ${{ success() && !cancelled() }}