mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 02:01:01 -03:30
Merge pull request #11734 from shanemcd/fix-image-push
Fix image push when overriding awx_image_tag
This commit is contained in:
@@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
- name: Tag and Push Container Images
|
- name: Tag and Push Container Images
|
||||||
docker_image:
|
docker_image:
|
||||||
name: "{{ awx_image }}:{{ awx_version }}"
|
name: "{{ awx_image }}:{{ awx_image_tag }}"
|
||||||
repository: "{{ registry }}/{{ awx_image }}:{{ item }}"
|
repository: "{{ registry }}/{{ awx_image }}:{{ item }}"
|
||||||
force_tag: yes
|
force_tag: yes
|
||||||
push: true
|
push: true
|
||||||
source: local
|
source: local
|
||||||
with_items:
|
with_items:
|
||||||
- "latest"
|
- "latest"
|
||||||
- "{{ awx_version }}"
|
- "{{ awx_image_tag }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user