diff --git a/.github/workflows/build-wheel-linux.yml b/.github/workflows/build-wheel-linux.yml index 28810d8..b63f5e5 100644 --- a/.github/workflows/build-wheel-linux.yml +++ b/.github/workflows/build-wheel-linux.yml @@ -144,7 +144,7 @@ jobs: source ./scripts/select-python-linux.sh 3.10 pip3 install twine ls -l artifact-${{ matrix.python-version }}/*.whl - twine upload --repository testpypi artifact-${{ matrix.python-version }}/*.whl + twine upload artifact-${{ matrix.python-version }}/*.whl env: TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_TEST_API_TOKEN }} \ No newline at end of file + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/build-wheel-macos.yml b/.github/workflows/build-wheel-macos.yml index 3c57f46..b1a1713 100644 --- a/.github/workflows/build-wheel-macos.yml +++ b/.github/workflows/build-wheel-macos.yml @@ -149,7 +149,7 @@ jobs: source ${VENV_DIR}/bin/activate pip3 install twine ls -l artifact-${{ matrix.arch_type }}-${{ matrix.python-version }}/*.whl - twine upload --repository testpypi artifact-${{ matrix.arch_type }}-${{ matrix.python-version }}/*.whl + twine upload artifact-${{ matrix.arch_type }}-${{ matrix.python-version }}/*.whl env: TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_TEST_API_TOKEN }} \ No newline at end of file + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 71dfd34..23a7e32 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -27,7 +27,5 @@ jobs: pypi: needs: [wheel-linux, wheel-macos] uses: ecmwf-actions/reusable-workflows/.github/workflows/cd-pypi.yml@v2 - with: - testpypi: true secrets: inherit