Añadir .gitea/workflows/production-desarrollo.yaml

This commit is contained in:
2026-03-11 22:02:37 +00:00
parent fa1f7e6c7c
commit e636ae76b5
@@ -0,0 +1,27 @@
name: Deploy Migrations to Production
on:
push:
branches:
- main
paths:
- 'supabase/**'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_DESARROLLO_ACCESS_TOKEN }}
SUPABASE_PROJECT_ID: ${{ secrets.SUPABASE_DESARROLLO_PROJECT_ID }}
steps:
- uses: actions/checkout@v4
- uses: supabase/setup-cli@v1
with:
version: latest
- run: supabase link --project-ref $SUPABASE_PROJECT_ID
- run: supabase db push --debug --yes