feat: Add twine check before upload #30

This commit is contained in:
Henry Schreiner 2020-06-02 11:08:43 -04:00
parent 37e305e741
commit 176ae50c06
3 changed files with 18 additions and 0 deletions

View file

@ -101,6 +101,15 @@ would now look like:
packages_dir: custom-dir/
```
### Disabling twine check
You can also disable the twine check with:
```yml
with:
check: false
```
## License
The Dockerfile and associated scripts and documentation in this project

View file

@ -16,6 +16,10 @@ inputs:
description: The target directory for distribution
required: false
default: dist
check:
description: Check before uploading
required: false
default: true
branding:
color: yellow
icon: upload-cloud
@ -27,3 +31,4 @@ runs:
- ${{ inputs.password }}
- ${{ inputs.repository_url }}
- ${{ inputs.packages_dir }}
- ${{ inputs.check }}

View file

@ -28,6 +28,10 @@ then
are in place should you face this problem.
fi
if [[ ${INPUT_CHECK,,} != "false" ]] ; then
exec twine check ${INPUT_PACKAGES_DIR%%/}/*
fi
TWINE_USERNAME="$INPUT_USER" \
TWINE_PASSWORD="$INPUT_PASSWORD" \