Browse Source

fix(dashboard): Remove working directory specification

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

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

@@ -48,7 +48,7 @@ jobs:
               run: vercel pull --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: Pull Vercel Environment Variables
             - name: Pull Vercel Environment Variables
-              run: vercel env pull --cwd ./packages/dashboard --environment=${{ env.VERCEL_ENV }} --yes --scope ${{ env.VERCEL_SCOPE }} --token=${{ secrets.VERCEL_TOKEN }}
+              run: vercel env pull --environment=${{ env.VERCEL_ENV }} --yes --scope ${{ env.VERCEL_SCOPE }} --token=${{ secrets.VERCEL_TOKEN }}
 
 
             - name: Build Project Artifacts
             - name: Build Project Artifacts
               run: vercel build --scope ${{ env.VERCEL_SCOPE }} --token=${{ secrets.VERCEL_TOKEN }} ${{ env.VERCEL_ENV == 'production' && '--prod' || '' }}
               run: vercel build --scope ${{ env.VERCEL_SCOPE }} --token=${{ secrets.VERCEL_TOKEN }} ${{ env.VERCEL_ENV == 'production' && '--prod' || '' }}