Skip to content

Commit

Permalink
Update ci-cd.yml to reference PYPI API token correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose authored Mar 16, 2024
1 parent ad75258 commit ac0297d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac0297d

Please sign in to comment.