diff --git a/roles/upload-pypi/tasks/main.yaml b/roles/upload-pypi/tasks/main.yaml index 0805e1fb6..871f3d1d5 100644 --- a/roles/upload-pypi/tasks/main.yaml +++ b/roles/upload-pypi/tasks/main.yaml @@ -13,7 +13,6 @@ - name: Upload wheel with twine before tarballs command: "{{ pypi_twine_executable }} upload -r {{ pypi_repository }} {{ item.path }}" with_items: "{{ found_wheels.files }}" - when: found_wheels.matched|bool - name: Find tarballs to upload find: @@ -24,4 +23,3 @@ - name: Upload tarballs with twine command: "{{ pypi_twine_executable }} upload -r {{ pypi_repository }} {{ item.path }}" with_items: "{{ found_tarballs.files }}" - when: found_tarballs.matched|bool