File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,15 @@ would now look like:
101
101
packages_dir: custom-dir/
102
102
` ` `
103
103
104
- # ## Disabling twine check
104
+ # ## Disabling metadata verification
105
105
106
- You can also disable the twine check with :
106
+ It is recommended that you run `twine check` just after producing your files,
107
+ but this also runs `twine check` before upload. You can also disable the twine
108
+ check with :
107
109
108
110
` ` ` yml
109
111
with:
110
- check : false
112
+ verify_metadata : false
111
113
` ` `
112
114
113
115
# # License
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ inputs:
16
16
description : The target directory for distribution
17
17
required : false
18
18
default : dist
19
- check :
20
- description : Check before uploading
19
+ verify_metadata :
20
+ description : Check metadata before uploading
21
21
required : false
22
22
default : true
23
23
branding :
31
31
- ${{ inputs.password }}
32
32
- ${{ inputs.repository_url }}
33
33
- ${{ inputs.packages_dir }}
34
- - ${{ inputs.check }}
34
+ - ${{ inputs.verify_metadata }}
Original file line number Diff line number Diff line change 28
28
are in place should you face this problem.
29
29
fi
30
30
31
- if [[ ${INPUT_CHECK ,,} != " false" ]] ; then
31
+ if [[ ${INPUT_VERIFY_METADATA ,,} != " false" ]] ; then
32
32
twine check ${INPUT_PACKAGES_DIR%%/ } /*
33
33
fi
34
34
You can’t perform that action at this time.
0 commit comments