ensure the twine check command runs in the correct directory

chdir to the same directory used by the step that builds the dist
files in the first place

Change-Id: Idc905fd5bd921a2d0b5c384505b6bf5880973aba
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-09-28 14:05:03 -04:00
parent 9aefdd3f30
commit b06c1c979f
1 changed files with 2 additions and 0 deletions

View File

@ -6,3 +6,5 @@
post_tasks:
- name: Run twine check on python dist tarball
command: "{{ pypi_twine_executable }} check dist/*"
args:
chdir: "{{ zuul.project.src_dir }}"