Skip to content

Commit ee92927

Browse files
committed
chore: update GitHub workflows to replace Bun commands with npx
- Removed Bun setup steps and replaced 'bunx' commands with 'npx' for generating Prisma client and deploying Trigger.dev, ensuring consistency and simplifying the CI configuration.
1 parent 929be00 commit ee92927

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/trigger-tasks-deploy-main.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,9 @@ jobs:
1212
uses: actions/setup-node@v4
1313
with:
1414
node-version: "22.x" # Updated to match Node.js w/ Vercel
15-
- name: Setup Bun
16-
uses: oven-sh/setup-bun@v1
17-
- name: Clear cache
18-
run: rm -rf node_modules .bun
19-
- name: Install dependencies
20-
run: |
21-
bun install --no-cache --force
2215
- name: Generate Prisma client
2316
working-directory: ./packages/db
24-
run: bunx prisma generate
17+
run: npx prisma generate
2518
- name: 🚀 Deploy Trigger.dev
2619
working-directory: ./apps/app
2720
env:
@@ -30,4 +23,4 @@ jobs:
3023
VERCEL_ACCESS_TOKEN: ${{ secrets.VERCEL_ACCESS_TOKEN }}
3124
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
3225
VERCEL_TEAM_ID: ${{ secrets.VERCEL_TEAM_ID }}
33-
run: bunx trigger.dev@latest deploy --env staging
26+
run: npx trigger.dev@latest deploy --env staging

0 commit comments

Comments
 (0)