From 9987c5e6270f4aa31402f426db604db797f34403 Mon Sep 17 00:00:00 2001 From: Carlos Bordon Date: Wed, 18 Mar 2026 13:23:38 -0300 Subject: [PATCH] Added wazuh Docker clone in presigned url job --- .github/workflows/Procedure_push_docker_images.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/Procedure_push_docker_images.yml b/.github/workflows/Procedure_push_docker_images.yml index 0a05031d..eeaf1133 100644 --- a/.github/workflows/Procedure_push_docker_images.yml +++ b/.github/workflows/Procedure_push_docker_images.yml @@ -156,8 +156,14 @@ jobs: LOCAL_ARTIFACT_URLS_FILEPATH: /tmp/artifact_urls.yml steps: + - name: Checkout repository + if: ${{ inputs.dev == true }} + uses: actions/checkout@v4 + with: + ref: ${{ inputs.docker_reference }} - name: Checkout wazuh/wazuh-automation repository + if: ${{ inputs.dev == true }} uses: actions/checkout@v4 with: repository: wazuh/wazuh-automation @@ -173,6 +179,7 @@ jobs: aws-region: ${{ secrets.AWS_REGION }} - name: Set up Python + if: ${{ inputs.dev == true }} uses: actions/setup-python@v6 with: python-version: '3.12'