Files
RepoDructor/.gitea/workflows/build.yml
josedario87 25aace816f
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 40s
Agregar mejoras PWA y unificar workflow a 1 job
- Agregar id único (/?app=musica), launch_handler, handle_links y url_handlers
- Unificar workflow de 2 jobs (build + deploy) a 1 solo job
- Workaround para bug de Gitea que solo ejecuta el primer job
2025-10-17 03:26:28 -06:00

40 lines
1.3 KiB
YAML
Raw 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: [ main ]
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 repodructor
run: |
docker build -t $REG/repodructor:${{ github.sha }} -t $REG/repodructor:latest .
docker push $REG/repodructor:${{ github.sha }}
docker push $REG/repodructor:latest
- name: Info about music directory
run: |
echo " Music directory expected at: /srv/repodructor/musica"
echo " Make sure it's mounted and accessible on the deployment host"
- name: Pull fresh images used in compose
run: docker compose pull
- name: Clean up stack
run: docker compose --project-name repodructor down
- name: Update stack
run: docker compose --project-name repodructor up -d --remove-orphans --wait