diff --git a/.gitea/workflows/deployment.yml b/.gitea/workflows/deployment.yml index 424782e..45edbb2 100644 --- a/.gitea/workflows/deployment.yml +++ b/.gitea/workflows/deployment.yml @@ -18,18 +18,18 @@ jobs: runs-on: [production-ready] steps: - # PASO 1: Checkout del Código - - name: 🚀 Checkout del Código - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - # PASO 2: Configurar Node.js (necesario para ejecutar las acciones de checkout/setup) + # PASO 1: Configurar Node.js (necesario para ejecutar las acciones de checkout) - name: ⚙️ Configurar Node.js (Necesario para las acciones) uses: actions/setup-node@v4 with: node-version: '20' + # PASO 2: Checkout del Código + - name: 🚀 Checkout del Código + uses: actions/checkout@v4 + with: + fetch-depth: 0 + # PASO 3: Detener y eliminar contenedores anteriores - name: 🛑 Detener Contenedores Anteriores run: |