Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/dev-deploy-vercel-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ jobs:
name: Install pnpm
with:
version: 10
run_install: true
cwd: echo/frontend
run_install: false

- name: Install Dependencies
run: pnpm install --frozen-lockfile
working-directory: echo/frontend

- name: Install Vercel CLI
run: pnpm add --global vercel@latest
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/dev-deploy-vercel-portal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ jobs:
name: Install pnpm
with:
version: 10
run_install: true
cwd: echo/frontend
run_install: false

- name: Install Dependencies
run: pnpm install --frozen-lockfile
working-directory: echo/frontend

- name: Install Vercel CLI
run: pnpm add --global vercel@latest
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/prod-deploy-vercel-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ jobs:
name: Install pnpm
with:
version: 10
run_install: true
cwd: echo/frontend
run_install: false

- name: Install Dependencies
run: pnpm install --frozen-lockfile
working-directory: echo/frontend

- name: Install Vercel CLI
run: pnpm add --global vercel@latest
Expand All @@ -36,9 +39,9 @@ jobs:
working-directory: echo/frontend

- name: Build Project Artifacts
run: vercel build --target=production --token=${{ secrets.VERCEL_TOKEN }}
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
working-directory: echo/frontend

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --target=production --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
working-directory: echo/frontend
11 changes: 7 additions & 4 deletions .github/workflows/prod-deploy-vercel-portal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ jobs:
name: Install pnpm
with:
version: 10
run_install: true
cwd: echo/frontend
run_install: false

- name: Install Dependencies
run: pnpm install --frozen-lockfile
working-directory: echo/frontend

- name: Install Vercel CLI
run: pnpm add --global vercel@latest
Expand All @@ -34,9 +37,9 @@ jobs:
working-directory: echo/frontend

- name: Build Project Artifacts
run: vercel build --target=production --token=${{ secrets.VERCEL_TOKEN }}
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
working-directory: echo/frontend

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --target=production --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
working-directory: echo/frontend