mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-18 20:43:43 +03:00
chore(ansible): use better task names
This commit is contained in:
parent
d1a0f7fff2
commit
98c1803bfa
|
@ -11,7 +11,7 @@
|
||||||
name: debug_forge_vars
|
name: debug_forge_vars
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Build and push image to registry
|
- name: Build and upload container image
|
||||||
containers.podman.podman_image:
|
containers.podman.podman_image:
|
||||||
name: "{{ __image_name }}"
|
name: "{{ __image_name }}"
|
||||||
tag: latest
|
tag: latest
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
poll: 0
|
poll: 0
|
||||||
register: __podman_image
|
register: __podman_image
|
||||||
|
|
||||||
- name: Waiting for container build to finish
|
- name: Waiting for container build and upload to finish
|
||||||
ansible.builtin.async_status:
|
ansible.builtin.async_status:
|
||||||
jid: "{{ __podman_image.ansible_job_id }}"
|
jid: "{{ __podman_image.ansible_job_id }}"
|
||||||
register: __job_result
|
register: __job_result
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
retries: 1800
|
retries: 1800
|
||||||
delay: 1
|
delay: 1
|
||||||
|
|
||||||
- name: INFO | Status from build and push
|
- name: INFO | Result from container image build
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg:
|
msg:
|
||||||
- "{{ __job_result.actions | to_nice_yaml(indent=2) }}"
|
- "{{ __job_result.actions | to_nice_yaml(indent=2) }}"
|
||||||
|
|
Loading…
Reference in a new issue