diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index fea978c43..978a50992 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -33,4 +33,4 @@ jobs: run: | bash ./bin/publish-pypi env: - PYPI_TOKEN: ${{ secrets.INCREASE_PYPI_TOKEN }} + PYPI_TOKEN: ${{ secrets.INCREASE_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 3a8a33bf0..f1e3df290 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -24,4 +24,4 @@ jobs: run: | bash ./bin/publish-pypi env: - PYPI_TOKEN: ${{ secrets.INCREASE_PYPI_TOKEN }} + PYPI_TOKEN: ${{ secrets.INCREASE_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index fe8e5e06f..ea6103350 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -17,4 +17,4 @@ jobs: bash ./bin/check-release-environment env: STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }} - PYPI_TOKEN: ${{ secrets.INCREASE_PYPI_TOKEN }} + PYPI_TOKEN: ${{ secrets.INCREASE_PYPI_TOKEN || secrets.PYPI_TOKEN }}