Sfoglia il codice sorgente

fix(dashboard): Remove working directory specification

David Höck 10 mesi fa
parent
commit
0c8b7654d1
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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 }}
 
             - 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
               run: vercel build --scope ${{ env.VERCEL_SCOPE }} --token=${{ secrets.VERCEL_TOKEN }} ${{ env.VERCEL_ENV == 'production' && '--prod' || '' }}