From 609033b8355f8fa7c64c4f16d2cb9753a9b56ff6 Mon Sep 17 00:00:00 2001 From: Resistencia Dev Date: Sat, 13 Dec 2025 15:27:15 +0100 Subject: [PATCH] fix: Corregir checkout en workflow de Gitea Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Eliminados parámetros innecesarios que causaban error de interpolación - El checkout de Gitea Actions funciona automáticamente sin server-url, repository y token explícitos --- .gitea/workflows/deployment.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitea/workflows/deployment.yml b/.gitea/workflows/deployment.yml index 2749654..424782e 100644 --- a/.gitea/workflows/deployment.yml +++ b/.gitea/workflows/deployment.yml @@ -22,9 +22,6 @@ jobs: - name: 🚀 Checkout del Código uses: actions/checkout@v4 with: - server-url: ${{ gitea.server_url }} - repository: ${{ gitea.repository }} - token: ${{ gitea.token }} fetch-depth: 0 # PASO 2: Configurar Node.js (necesario para ejecutar las acciones de checkout/setup)