Revert "Include tar.gz.asc / whl.asc for twine"
Talking with fungi, the next version of pypi won't support asc files
being displayed. So, just revert for now. Also, this needs to be a
single twine command if we do want to support them.
This reverts commit 356c9807c3
.
Change-Id: Ied130a1380ff2a404b9fdadb7c0cddd10cc757c5
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
0a4f5117df
commit
f49614bbcd
@ -7,7 +7,7 @@
|
|||||||
- name: Find wheels to upload
|
- name: Find wheels to upload
|
||||||
find:
|
find:
|
||||||
paths: "{{ pypi_path }}"
|
paths: "{{ pypi_path }}"
|
||||||
patterns: "*.whl,*.whl.asc"
|
patterns: "*.whl"
|
||||||
register: found_wheels
|
register: found_wheels
|
||||||
|
|
||||||
- name: Upload wheel with twine before tarballs
|
- name: Upload wheel with twine before tarballs
|
||||||
@ -17,7 +17,7 @@
|
|||||||
- name: Find tarballs to upload
|
- name: Find tarballs to upload
|
||||||
find:
|
find:
|
||||||
paths: "{{ pypi_path }}"
|
paths: "{{ pypi_path }}"
|
||||||
patterns: "*.tar.gz,*.tar.gz.asc"
|
patterns: "*.tar.gz"
|
||||||
register: found_tarballs
|
register: found_tarballs
|
||||||
|
|
||||||
- name: Upload tarballs with twine
|
- name: Upload tarballs with twine
|
||||||
|
Loading…
Reference in New Issue
Block a user