@@ -9,31 +9,76 @@ inputs:
9
9
password :
10
10
description : Password for your PyPI user or an access token
11
11
required : true
12
- repository_url :
12
+ repository-url : # Canonical alias for `repository_url`
13
13
description : The repository URL to use
14
14
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`
16
24
description : The target directory for distribution
17
25
required : false
18
26
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`
20
37
description : Check metadata before uploading
21
38
required : false
22
39
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`
24
50
description : >-
25
51
Do not fail if a Python package distribution
26
52
exists in the target package index
27
53
required : false
28
54
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'
29
65
verbose :
30
66
description : Show verbose output.
31
67
required : false
32
68
default : ' false'
33
- print_hash :
69
+ print-hash : # Canonical alias for `print_hash`
34
70
description : Show hash values of files to be uploaded
35
71
required : false
36
72
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'
37
82
branding :
38
83
color : yellow
39
84
icon : upload-cloud
43
88
args :
44
89
- ${{ inputs.user }}
45
90
- ${{ 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 }}
50
95
- ${{ inputs.verbose }}
51
- - ${{ inputs.print_hash }}
96
+ - ${{ inputs.print-hash }}
0 commit comments