From 3fcee198d82e9ac83472f669f9c0c96312fe92c7 Mon Sep 17 00:00:00 2001 From: Chris Fonnesbeck Date: Wed, 15 Dec 2021 12:31:00 -0600 Subject: [PATCH] Updated PyPI token to push to the pymc project --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d0dabeaf4..49313ea5c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: release-job: runs-on: ubuntu-latest env: - PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} + PYPI_TOKEN: ${{ secrets.PYPI_TOKEN_PYMC }} steps: - uses: actions/checkout@v2 - name: Set up Python @@ -39,7 +39,7 @@ jobs: - name: Publish to PyPI run: | twine check dist/* - twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN} dist/* + twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN_PYMC} dist/* test-install-job: needs: release-job runs-on: ubuntu-latest