You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
472 B
14 lines
472 B
- hosts: all |
|
roles: |
|
- fetch-python-sdist-output |
|
|
|
pre_tasks: |
|
# NOTE(pabelanger): This need to run before fetch-python-sdist-output to |
|
# properly rename wheels and tarballs. |
|
- name: Rename files to branch specific name |
|
shell: "mv *.{{ item }} {{ zuul.project.short_name }}-{{ zuul.branch | replace('/', '-') }}.{{ item }}" |
|
args: |
|
chdir: "src/{{ zuul.project.canonical_name }}/dist" |
|
with_items: |
|
- "tar.gz" |
|
- "whl"
|
|
|