diff --git a/.github/workflows/pypi-test.yaml b/.github/workflows/pypi-test.yaml index 474eb254..5ac88bf0 100644 --- a/.github/workflows/pypi-test.yaml +++ b/.github/workflows/pypi-test.yaml @@ -15,5 +15,6 @@ jobs: with: PYTHON_VERSION: '3.9' IS_TEST_PUBLISH: true + secrets: PYPI_TEST_API_TOKEN: ${{ secrets.PYPI_TEST_API_TOKEN }} PYPI_PROD_API_TOKEN: ${{ secrets.PYPI_PROD_API_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 5e5e76c1..70087f06 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -14,5 +14,6 @@ jobs: with: PYTHON_VERSION: '3.9' IS_TEST_PUBLISH: false - PYPI_TEST_API_TOKEN: ${{ secrets.PYPI_TEST_API_TOKEN }} - PYPI_PROD_API_TOKEN: ${{ secrets.PYPI_PROD_API_TOKEN }} + secrets: + PYPI_TEST_API_TOKEN: ${{ secrets.PYPI_TEST_API_TOKEN }} + PYPI_PROD_API_TOKEN: ${{ secrets.PYPI_PROD_API_TOKEN }}