Build and deploy to prod environment
This commit is contained in:
parent
e768924d45
commit
cc4d705ab9
|
@ -33,10 +33,10 @@ jobs:
|
||||||
run: npm install --global vercel@canary
|
run: npm install --global vercel@canary
|
||||||
|
|
||||||
- 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=production --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
|
|
||||||
- name: Build Project Artifacts
|
- name: Build Project Artifacts
|
||||||
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
|
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
|
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
@ -55,7 +55,7 @@ jobs:
|
||||||
run: npm install --global vercel@canary
|
run: npm install --global vercel@canary
|
||||||
|
|
||||||
- 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=production --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
@ -63,4 +63,4 @@ jobs:
|
||||||
path: .vercel/
|
path: .vercel/
|
||||||
|
|
||||||
- name: Deploy Project Artifacts to Vercel
|
- name: Deploy Project Artifacts to Vercel
|
||||||
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
|
run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
|
|
Loading…
Reference in New Issue