From 541625bf669b1af2f8c878828c64c30869c662cb Mon Sep 17 00:00:00 2001 From: dmolinari Date: Sat, 14 Jun 2025 23:01:28 -0300 Subject: [PATCH] fix: Run jobs on runner host to resolve network issues --- .gitea/workflows/deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 813726d..ec0d9bf 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -10,6 +10,9 @@ jobs: name: Construir y Subir Imágenes Docker runs-on: ubuntu-latest + container: + image: host + steps: - name: Checkout del código uses: actions/checkout@v4 @@ -47,6 +50,9 @@ jobs: name: Desplegar a Producción runs-on: ubuntu-latest needs: build + + container: + image: host steps: - name: Desplegar con Docker Compose