Browse Source

fix(dashboard): Remove cwd from Vercel pull command

David Höck 9 months ago
parent
commit
45c7e6ba20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/deploy_dashboard.yml

+ 1 - 1
.github/workflows/deploy_dashboard.yml

@@ -39,7 +39,7 @@ jobs:
               run: vercel link --yes --scope vendure --project=admin-dashboard --token=${{ secrets.VERCEL_TOKEN }}
               run: vercel link --yes --scope vendure --project=admin-dashboard --token=${{ secrets.VERCEL_TOKEN }}
 
 
             - name: Pull Vercel Environment Information
             - name: Pull Vercel Environment Information
-              run: vercel pull --cwd ./packages/dashboard --environment=${{ env.VERCEL_ENV }} --yes --scope vendure --token=${{ secrets.VERCEL_TOKEN }}
+              run: vercel pull --environment=${{ env.VERCEL_ENV }} --yes --scope vendure --token=${{ secrets.VERCEL_TOKEN }}
 
 
             - name: Build Project Artifacts
             - name: Build Project Artifacts
               run: vercel build --scope vendure --token=${{ secrets.VERCEL_TOKEN }} ${{ env.VERCEL_ENV == 'production' && '--prod' || '' }}
               run: vercel build --scope vendure --token=${{ secrets.VERCEL_TOKEN }} ${{ env.VERCEL_ENV == 'production' && '--prod' || '' }}