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