Skip to content

Merge pull request #145 from WhyAsh5114/144-myorep-match-down-sets #3

Merge pull request #145 from WhyAsh5114/144-myorep-match-down-sets

Merge pull request #145 from WhyAsh5114/144-myorep-match-down-sets #3

name: Deploy Pipeline
on:
push:
paths:
- prisma/migrations/**
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Apply all pending migrations to production database
run: npx prisma migrate deploy
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}