Build and deploy to prod environment

This commit is contained in:
Santiago Lo Coco 2024-04-23 20:25:10 +02:00
parent e768924d45
commit cc4d705ab9
1 changed files with 4 additions and 4 deletions

View File

@ -33,10 +33,10 @@ jobs:
run: npm install --global vercel@canary
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Upload
uses: actions/upload-artifact@v4
@ -55,7 +55,7 @@ jobs:
run: npm install --global vercel@canary
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- uses: actions/download-artifact@v4
with:
@ -63,4 +63,4 @@ jobs:
path: .vercel/
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}