Update ci.yml

This commit is contained in:
Santiago Lo Coco 2024-04-23 19:41:23 +02:00
parent 53d4ebccb3
commit 08410839f7
1 changed files with 7 additions and 7 deletions

View File

@ -29,11 +29,14 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install - name: Install Vercel CLI
run: npm install run: npm install --global vercel@canary
- name: Build - name: Pull Vercel Environment Information
run: npm run build run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Upload - name: Upload
uses: actions/upload-pages-artifact@v3 uses: actions/upload-pages-artifact@v3
@ -53,8 +56,5 @@ jobs:
- 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: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel - name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}