diff --git a/.github/workflows/vercel.yaml b/.github/workflows/vercel.yaml index 62b040f..70becce 100644 --- a/.github/workflows/vercel.yaml +++ b/.github/workflows/vercel.yaml @@ -17,6 +17,11 @@ jobs: uses: actions/checkout@v3 - name: install vercel cli run: npm install -global vercel@latest + - name: Set environment variables from .env file + run: | + set -a + source .env + set +a - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts