Skip to content

triggered a migration #1

triggered a migration

triggered a migration #1

name: Run Migration
on:
push:
#paths:
# - prisma/migrations/** # Only run this workflow when migrations are updated
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Install dependencies
run: npm install
- name: Apply all pending migrations to the database
run: npx prisma migrate deploy
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}