Skip to content

chore: update BUN_VERSION in database migration workflow #8

chore: update BUN_VERSION in database migration workflow

chore: update BUN_VERSION in database migration workflow #8

name: Database Migrations Dev
on:
push:
branches:
- '**' # any branch
workflow_dispatch: # Allows manual triggering
env:
BUN_VERSION: "1.2.15"
jobs:
migrate:
name: Run Database Migrations
runs-on: ubuntu-latest-custom
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ env.BUN_VERSION }}
- name: Install dependencies
run: bun install
- name: Apply database migrations
env:
DATABASE_URL: ${{ secrets.DATABASE_URL_DEV }}
run: |
cd packages/db
bunx prisma migrate deploy