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