From 97b6a9241f421b9742b51b6555525aa8cf658e6b Mon Sep 17 00:00:00 2001 From: dmolinari Date: Mon, 16 Jun 2025 11:57:42 -0300 Subject: [PATCH] Se agregan debug-network para verificar valores. --- .drone.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.drone.yml b/.drone.yml index 94a41b8..fdb9358 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,6 +9,19 @@ trigger: - push steps: +# --- PASO DE DEPURACIÓN AÑADIDO --- +- name: debug-network + image: alpine:latest + commands: + - echo "--- Network Interfaces ---" + - ip addr show + - echo "--- DNS Configuration ---" + - cat /etc/resolv.conf + - echo "--- Testing Connectivity ---" + - ping -c 4 1.1.1.1 + - ping -c 4 api.nuget.org + - echo "--- End of Debug ---" + - name: build-and-publish-backend image: plugins/docker settings: @@ -24,6 +37,8 @@ steps: - latest - ${DRONE_COMMIT_SHA:0:8} insecure: true + depends_on: # Hacemos que dependa del paso de debug para que corra después + - debug-network - name: build-and-publish-frontend image: plugins/docker