When deploying, get submodules
Vercel Preview Deployment / Deploy-Preview (push) Successful in 8s Details

This commit is contained in:
Angad Behl 2024-06-25 18:05:45 +00:00 committed by GitHub
parent b4af633bcd
commit a1acda9e5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,8 @@ jobs:
run: npm install --global vercel@latest run: npm install --global vercel@latest
- name: Pull Vercel Environment Information - name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Get Git submodules
run: git submodule update --init --recursive
- name: Build Project Artifacts - name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel - name: Deploy Project Artifacts to Vercel