File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,15 @@ would now look like:
101101 packages_dir: custom-dir/
102102` ` `
103103
104+ # ## Disabling twine check
105+
106+ You can also disable the twine check with :
107+
108+ ` ` ` yml
109+ with:
110+ check: false
111+ ` ` `
112+
104113# # License
105114
106115The Dockerfile and associated scripts and documentation in this project
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ inputs:
1616 description : The target directory for distribution
1717 required : false
1818 default : dist
19+ check :
20+ description : Check before uploading
21+ required : false
22+ default : true
1923branding :
2024 color : yellow
2125 icon : upload-cloud
2731 - ${{ inputs.password }}
2832 - ${{ inputs.repository_url }}
2933 - ${{ inputs.packages_dir }}
34+ - ${{ inputs.check }}
Original file line number Diff line number Diff line change 2828 are in place should you face this problem.
2929fi
3030
31+ if [[ ${INPUT_CHECK,,} != " false" ]] ; then
32+ exec twine check ${INPUT_PACKAGES_DIR%%/ } /*
33+ fi
34+
3135
3236TWINE_USERNAME=" $INPUT_USER " \
3337TWINE_PASSWORD=" $INPUT_PASSWORD " \
You can’t perform that action at this time.
0 commit comments