From 30570beacad979c09fec5f7ecab7269e0e463aa9 Mon Sep 17 00:00:00 2001 From: dmolinari Date: Sun, 15 Jun 2025 19:00:31 -0300 Subject: [PATCH] Reversion 1.24.0 --- .gitea/workflows/deploy.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6b168f0..bb7aaa4 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -14,22 +14,20 @@ jobs: repository: ${{ gitea.repository }} token: ${{ secrets.ACTIONS_PAT }} - # --- ¡USA LA IP PÚBLICA! --- - name: Login al Registro de Gitea uses: docker/login-action@v3 with: - registry: ${{ secrets.REGISTRY_URL }} + registry: gitea:5000 username: ${{ gitea.actor }} password: ${{ secrets.ACTIONS_PAT }} - # --- ¡USA LA IP PÚBLICA EN LOS TAGS! --- - name: Construir y Subir API Backend uses: docker/build-push-action@v5 with: context: . file: ./Backend/GestionIntegral.Api/Dockerfile push: true - tags: ${{ secrets.REGISTRY_URL }}/${{ gitea.repository }}/api:latest + tags: gitea:5000/${{ gitea.repository }}/api:latest - name: Construir y Subir Frontend uses: docker/build-push-action@v5 @@ -37,7 +35,7 @@ jobs: context: ./Frontend file: ./Frontend/Dockerfile push: true - tags: ${{ secrets.REGISTRY_URL }}/${{ gitea.repository }}/frontend:latest + tags: gitea:5000/${{ gitea.repository }}/frontend:latest deploy: name: Desplegar a Producción