Browse Source

fix(dashboard): Update Vercel pull command to remove working directory specification

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

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

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