Files
amigos-app/.gitea/workflows/build-and-deploy.yml
josedario87 027a6a5e79
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 21s
Unificar workflow a un solo job
Cambios:
- Combinar jobs 'build' y 'deploy' en 'build-and-deploy'
- Consolidar variables de entorno en un solo lugar
- Remover dependencia 'needs: build'
- Mantener orden secuencial de operaciones

Razón: Workaround para bug de Gitea que solo ejecuta el primer job
y queda colgado esperando indefinidamente.
2025-10-17 04:49:30 -06:00

42 lines
1.3 KiB
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: build-and-deploy
on:
push:
branches: [ master ]
jobs:
#───────────────── build, push & deploy (unified) ─────────────────
build-and-deploy:
runs-on: docker
env:
REG: gitea.nucleoriofrio.com/nucleo000
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
registry: gitea.nucleoriofrio.com
username: nucleo000
password: 7bc7b2fcd283bd6a251bef3ede368b7f897c919d
- name: Build+push amigos-app
run: |
docker build -t $REG/amigos-app:${{ github.sha }} -t $REG/amigos-app:latest .
docker push $REG/amigos-app:${{ github.sha }}
docker push $REG/amigos-app:latest
- name: Info about MongoDB
run: |
echo " MongoDB will be deployed with default credentials"
echo " Database: testdb"
echo " Username: admin"
echo " Password: MongoPass2024!"
- name: Pull fresh images used in compose
run: docker compose pull
- name: Clean up stack
run: docker compose --project-name amigos-app down
- name: Update stack
run: docker compose --project-name amigos-app up -d --remove-orphans --wait