[fix] Fix post pipeline image publish

- Set defaults so the Post Pipeline can successfully build images

Change-Id: I4d50e503b888c140433635090bddae96700fec0b
This commit is contained in:
Scott Hussey 2019-04-03 12:56:57 -05:00
parent e75bb2d90e
commit f8bc1ccb85
1 changed files with 3 additions and 3 deletions

View File

@ -30,10 +30,10 @@
- name: Determine tags
shell: echo '{{ tags | to_json }}' | python3 {{ 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