From e636ae76b5c3332f5cf52dff1bac32209e7b2706 Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Wed, 11 Mar 2026 22:02:37 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20.gitea/workflows/production-desar?= =?UTF-8?q?rollo.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/production-desarrollo.yaml | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/production-desarrollo.yaml diff --git a/.gitea/workflows/production-desarrollo.yaml b/.gitea/workflows/production-desarrollo.yaml new file mode 100644 index 0000000..75bede8 --- /dev/null +++ b/.gitea/workflows/production-desarrollo.yaml @@ -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 \ No newline at end of file