Skip to content

Commit a08faf7

Browse files
Update main.yml
1 parent 8a31155 commit a08faf7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,12 @@ jobs:
5252
- name: Deploy to Vercel
5353
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
5454
run: npx vercel --prod --token ${{ secrets.VERCEL_TOKEN }}
55-
working-directory: ./client
55+
# working-directory eliminado para evitar el error
5656
env:
5757
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
5858
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
59+
working-directory: ./client # <- 🚫 Este fue eliminado para evitar /client/client
60+
# ✅ Ya estás en ./client desde `defaults.run`, así que no es necesario repetir
5961

6062
backend:
6163
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)