diff --git a/.github/workflows/PushWorkflow.yml b/.github/workflows/PushWorkflow.yml index df50e55..032b384 100644 --- a/.github/workflows/PushWorkflow.yml +++ b/.github/workflows/PushWorkflow.yml @@ -35,10 +35,13 @@ jobs: name: playwright-report path: playwright-report retention-days: 5 - - name: Build for Vercel + - name: Pull Vercel Environment Information + if: success() + run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} + - name: Build Project Artifacts if: success() run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} - - name: Push to Vercel + - name: Deploy Project Artifacts to Vercel if: success() run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} \ No newline at end of file