Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed May 20, 2024
1 parent 2570e03 commit 7e71d16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
run: pnpm install
- run: pnpm run build
- name: Apply all pending migrations to the database
run: pnpm --filter "@bitspace/web" dlx prisma migrate deploy
run: pnpm --filter "@bitspace/web" prisma:migrate:deploy
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
4 changes: 3 additions & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"build": "pnpm prisma:generate && next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"prisma:generate": "prisma generate"
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy"
},
"dependencies": {
"@bitspace/circuit": "workspace:*",
Expand Down

0 comments on commit 7e71d16

Please sign in to comment.