(zuul) Fix image publish post pipeline

- Fix post pipeline publish job issue introduced w/ Ansible upgrade

Change-Id: Ib25c2dcc08eae3db15926c272a9a6c297d9e2ed8
This commit is contained in:
Scott Hussey 2019-04-03 14:48:14 -05:00
parent b604af2411
commit 23e2a1b53e
1 changed files with 3 additions and 3 deletions

View File

@ -28,10 +28,10 @@
- name: Determine tags
shell: echo '{{ tags | to_json }}' | python {{ zuul.project.src_dir }}/tools/image_tags.py
environment:
BRANCH: "{{ zuul.branch }}"
CHANGE: "{{ zuul.change }}"
BRANCH: "{{ zuul.branch | default('') }}"
CHANGE: "{{ zuul.change | default('') }}"
COMMIT: "{{ zuul.newrev | default('') }}"
PATCHSET: "{{ zuul.patchset }}"
PATCHSET: "{{ zuul.patchset | default('') }}"
register: image_tags
- name: Debug computed tags