From b6be599b739267bc04ecc1bdf4c08f3b1b3c9a66 Mon Sep 17 00:00:00 2001 From: angrybayblade Date: Thu, 30 May 2024 09:18:37 +0530 Subject: [PATCH] fix: use username and password env vars for publishing --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6e4c488cf..6a0dd6bb9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,8 +29,8 @@ jobs: - name: Publish Core to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} + user: ${{ secrets.PYPI_USERNAME }} + password: ${{ secrets.PYPI_PASSWORD }} skip-existing: true packages-dir: dist/ @@ -63,8 +63,8 @@ jobs: - name: Publish ${{ matrix.package }} to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} + user: ${{ secrets.PYPI_USERNAME }} + password: ${{ secrets.PYPI_PASSWORD }} skip-existing: true packages-dir: plugins/${{ matrix.package }}/dist/