Files
Escape/.gitea/workflows/migrate_supabase.yaml
whidix b2f686f782
All checks were successful
Migrate supabase / migrate (push) Successful in 15s
fix: remove DATABASE_URL display step from migration workflow
2026-03-08 17:40:28 +01:00

24 lines
380 B
YAML

name: Migrate supabase
on:
push:
branches:
- main
tags:
- '*'
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
jobs:
migrate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run migrations
run: npm run db:migrate