From ac0297d640e9fde53483ea2d2f14ebedbae4f445 Mon Sep 17 00:00:00 2001 From: Tom Close Date: Sat, 16 Mar 2024 14:26:57 +1100 Subject: [PATCH] Update ci-cd.yml to reference PYPI API token correctly --- .github/workflows/ci-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b508d6f8..966c601d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -100,8 +100,8 @@ jobs: id: deployable if: github.event_name == 'release' env: - PYPI_API_TOKEN: "${{ secrets.PYPI_API_TOKEN }}" - run: if [ -n "$PYPI_API_TOKEN" ]; then echo "DEPLOY=true" >> $GITHUB_OUTPUT; fi + PYPI_API_TOKEN: "${{ secrets.PYPI_TOKEN }}" + run: if [ -n "$PYPI_TOKEN" ]; then echo "DEPLOY=true" >> $GITHUB_OUTPUT; fi - name: Upload to PyPI if: steps.deployable.outputs.DEPLOY