File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,15 +179,15 @@ jobs:
179179 # Unlike for the Prod branch, we will push both releases and prerelease to PyPi Test
180180 - name : Publish package to Test PyPi
181181 if : github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
182- uses : pypa/gh-action-pypi-publish@1.8.7
182+ uses : pypa/gh-action-pypi-publish/v1
183183 with :
184184 user : __token__
185185 password : ${{ secrets.TEST_PYPI_API_TOKEN }}
186186 repository_url : https://test.pypi.org/legacy/
187187 # Publish everything to Prod PyPi but only if it is not a prerelease
188188 - name : Publish package to Prod PyPi
189189 if : github.event_name == 'release' && startsWith(github.ref, 'refs/tags') && !github.event.release.prerelease
190- uses : pypa/gh-action-pypi-publish@1.8.7
190+ uses : pypa/gh-action-pypi-publish/v1
191191 with :
192192 user : __token__
193193 password : ${{ secrets.PROD_PYPI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments