File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ inputs:
2626 tag_template :
2727 description : The template for the git tag
2828 default : " ${VERSION}"
29+ repository-url :
30+ description : The PyPI repository URL to use
31+ default : https://upload.pypi.org/legacy/
2932 token :
3033 description : The GitHub access token
3134 dry_run :
8487 # https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/#publishing-the-distribution-to-pypi
8588 - name : Publish distribution 📦 to PyPI
8689 if : inputs.dry_run == 'false'
87- uses : pypa/gh-action-pypi-publish@release/v1
90+ # Pinned due to https://github.com/pypa/gh-action-pypi-publish/issues/290
91+ 92+ with :
93+ repository-url : ${{ inputs.repository_url }}
8894 - name : Do Not Publish distribution 📦 to PyPI on Dry Run
8995 if : inputs.dry_run == 'true'
9096 shell : bash
You can’t perform that action at this time.
0 commit comments