From 737788a5f76ca792209536e8b0d9591900090fb0 Mon Sep 17 00:00:00 2001 From: Alvin Varghese Date: Fri, 4 Aug 2023 21:17:50 +0530 Subject: [PATCH] edit: vercel workflow --- .github/workflows/vercel.yaml | 5 +++++ 1 file changed, 5 insertions(+) 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