@@ -9,31 +9,76 @@ inputs:
99 password :
1010 description : Password for your PyPI user or an access token
1111 required : true
12- repository_url :
12+ repository-url : # Canonical alias for `repository_url`
1313 description : The repository URL to use
1414 required : false
15- packages_dir :
15+ repository_url : # DEPRECATED ALIAS; TODO: Remove in v3+
16+ description : >-
17+ [DEPRECATED]
18+ The repository URL to use
19+ deprecationMessage : >-
20+ The inputs have been normalized to use kebab-case.
21+ Use `repository-url` instead.
22+ required : false
23+ packages-dir : # Canonical alias for `packages_dir`
1624 description : The target directory for distribution
1725 required : false
1826 default : dist
19- verify_metadata :
27+ packages_dir : # DEPRECATED ALIAS; TODO: Remove in v3+
28+ description : >-
29+ [DEPRECATED]
30+ The target directory for distribution
31+ deprecationMessage : >-
32+ The inputs have been normalized to use kebab-case.
33+ Use `packages-dir` instead.
34+ required : false
35+ default : dist
36+ verify-metadata : # Canonical alias for `verify_metadata`
2037 description : Check metadata before uploading
2138 required : false
2239 default : ' true'
23- skip_existing :
40+ verify_metadata : # DEPRECATED ALIAS; TODO: Remove in v3+
41+ description : >-
42+ [DEPRECATED]
43+ Check metadata before uploading
44+ deprecationMessage : >-
45+ The inputs have been normalized to use kebab-case.
46+ Use `verify-metadata` instead.
47+ required : false
48+ default : ' true'
49+ skip-existing : # Canonical alias for `skip_existing`
2450 description : >-
2551 Do not fail if a Python package distribution
2652 exists in the target package index
2753 required : false
2854 default : ' false'
55+ skip_existing : # DEPRECATED ALIAS; TODO: Remove in v3+
56+ description : >-
57+ [DEPRECATED]
58+ Do not fail if a Python package distribution
59+ exists in the target package index
60+ deprecationMessage : >-
61+ The inputs have been normalized to use kebab-case.
62+ Use `skip-existing` instead.
63+ required : false
64+ default : ' false'
2965 verbose :
3066 description : Show verbose output.
3167 required : false
3268 default : ' false'
33- print_hash :
69+ print-hash : # Canonical alias for `print_hash`
3470 description : Show hash values of files to be uploaded
3571 required : false
3672 default : ' false'
73+ print_hash : # DEPRECATED ALIAS; TODO: Remove in v3+
74+ description : >-
75+ [DEPRECATED]
76+ Show hash values of files to be uploaded
77+ deprecationMessage : >-
78+ The inputs have been normalized to use kebab-case.
79+ Use `print-hash` instead.
80+ required : false
81+ default : ' false'
3782branding :
3883 color : yellow
3984 icon : upload-cloud
4388 args :
4489 - ${{ inputs.user }}
4590 - ${{ inputs.password }}
46- - ${{ inputs.repository_url }}
47- - ${{ inputs.packages_dir }}
48- - ${{ inputs.verify_metadata }}
49- - ${{ inputs.skip_existing }}
91+ - ${{ inputs.repository-url }}
92+ - ${{ inputs.packages-dir }}
93+ - ${{ inputs.verify-metadata }}
94+ - ${{ inputs.skip-existing }}
5095 - ${{ inputs.verbose }}
51- - ${{ inputs.print_hash }}
96+ - ${{ inputs.print-hash }}
0 commit comments