From 52c68b5f391261fde338e891f723fd35279a329b Mon Sep 17 00:00:00 2001 From: Carlos Bordon Date: Thu, 19 Mar 2026 10:46:38 -0300 Subject: [PATCH] Added Wazuh installation assistant tool as component --- .github/workflows/Procedure_push_docker_images.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Procedure_push_docker_images.yml b/.github/workflows/Procedure_push_docker_images.yml index 1ac30003..f0f5a50a 100644 --- a/.github/workflows/Procedure_push_docker_images.yml +++ b/.github/workflows/Procedure_push_docker_images.yml @@ -17,13 +17,13 @@ on: default: 'main' products: description: 'Comma-separated list of the image names to build and push' - default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer,wazuh-agent' + default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer,wazuh-agent,wazuh-assistant' required: false type: string commit_list: description: 'Wazuh components revisions (only for dev): json array with commit-hash for each product' type: string - default: '["latest", "latest", "latest", "latest"]' + default: '["latest", "latest", "latest", "latest", "latest"]' id: description: "ID used to identify the workflow uniquely." type: string @@ -51,13 +51,13 @@ on: type: string products: description: 'Comma-separated list of the image names to build and push' - default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer,wazuh-agent' + default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer,wazuh-agent,wazuh-assistant' required: false type: string commit_list: description: 'Wazuh components revisions (only for dev): json array with commit-hash for each product' type: string - default: '["latest", "latest", "latest", "latest"]' + default: '["latest", "latest", "latest", "latest", "latest"]' id: description: "ID used to identify the workflow uniquely." type: string @@ -117,7 +117,7 @@ jobs: done WC_JSON_ARRAY+="]" else - WC_JSON_ARRAY='["wazuh-manager","wazuh-dashboard","wazuh-indexer","wazuh-agent"]' + WC_JSON_ARRAY='["wazuh-manager","wazuh-dashboard","wazuh-indexer","wazuh-agent","wazuh-assistant"]' fi echo "Products to build: $WC_JSON_ARRAY" echo "WAZUH_COMPONENTS=$WC_JSON_ARRAY" >> $GITHUB_OUTPUT @@ -250,6 +250,9 @@ jobs: wazuh-agent) AGENT_REVISION="${REVISIONS[$i]}" ;; + wazuh-assistant) + ASSISTANT_REVISION="${REVISIONS[$i]}" + ;; esac done