We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a31155 commit a08faf7Copy full SHA for a08faf7
.github/workflows/main.yml
@@ -52,10 +52,12 @@ jobs:
52
- name: Deploy to Vercel
53
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
54
run: npx vercel --prod --token ${{ secrets.VERCEL_TOKEN }}
55
- working-directory: ./client
+ # working-directory eliminado para evitar el error
56
env:
57
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
58
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
61
62
backend:
63
runs-on: ubuntu-latest
0 commit comments