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 7bec72b commit 66bae69Copy full SHA for 66bae69
python/publish/action.yml
@@ -26,6 +26,9 @@ inputs:
26
tag_template:
27
description: The template for the git tag
28
default: "${VERSION}"
29
+ repository-url:
30
+ description: The PyPI repository URL to use
31
+ default: https://upload.pypi.org/legacy/
32
token:
33
description: The GitHub access token
34
dry_run:
@@ -85,6 +88,8 @@ runs:
85
88
- name: Publish distribution 📦 to PyPI
86
89
if: inputs.dry_run == 'false'
87
90
uses: pypa/gh-action-pypi-publish@release/v1
91
+ with:
92
+ repository-url: ${{ inputs.repository_url }}
93
- name: Do Not Publish distribution 📦 to PyPI on Dry Run
94
if: inputs.dry_run == 'true'
95
shell: bash
0 commit comments