We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2cfa9 commit edee7daCopy full SHA for edee7da
.github/workflows/pythonpackage.yml
@@ -109,10 +109,10 @@ jobs:
109
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
110
env:
111
PYPI_API_TOKEN: "${{ secrets.PYPI_API_TOKEN }}"
112
- run: if [ -n "$PYPI_API_TOKEN" ]; then echo ::set-output name=DEPLOY::true; fi
+ run: if [ -n "$PYPI_API_TOKEN" ]; then echo "DEPLOY=true" >> $GITHUB_OUTPUT; fi
113
- name: Upload to PyPI
114
if: steps.deployable.outputs.DEPLOY
115
- uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 # v1.4.2
+ uses: pypa/gh-action-pypi-publish@37f50c210e3d2f9450da2cd423303d6a14a6e29f # v1.5.1
116
with:
117
user: __token__
118
password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments