diff --git a/.github/workflows/deploy-db.yml b/.github/workflows/deploy-db.yml new file mode 100644 index 0000000..a285fa3 --- /dev/null +++ b/.github/workflows/deploy-db.yml @@ -0,0 +1,22 @@ +name: Deploy DB +on: + push: + branches: + - main + +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 + - run: npm run build + - name: Apply all pending migrations to the database + run: npx prisma migrate deploy + env: + DATABASE_URL: ${{ secrets.DATABASE_URL }} + DIRECT_URL: ${{ secrets.DIRECT_URL }}