Include tar.gz.asc / whl.asc for twine

Twine also supports asc files, so if found also upload them.

Change-Id: I12cc8b541ca136b64707efe7d94d7e5448238dc9
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-08-25 13:33:52 -04:00
parent 13889a5878
commit 356c9807c3
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
- name: Find wheels to upload
find:
paths: "{{ pypi_path }}"
patterns: "*.whl"
patterns: "*.whl,*.whl.asc"
register: found_wheels
- name: Upload wheel with twine before tarballs
@ -18,7 +18,7 @@
- name: Find tarballs to upload
find:
paths: "{{ pypi_path }}"
patterns: "*.tar.gz"
patterns: "*.tar.gz,*.tar.gz.asc"
register: found_tarballs
- name: Upload tarballs with twine