68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
name: Build
|
|
|
|
env:
|
|
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|
|
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install
|
|
run: npm install
|
|
|
|
- name: Lint
|
|
run: npm run lint
|
|
|
|
build:
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Vercel CLI
|
|
run: npm install --global vercel@canary
|
|
|
|
- name: Pull Vercel Environment Information
|
|
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
|
|
|
- name: Build Project Artifacts
|
|
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
|
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: build
|
|
path: .vercel/
|
|
retention-days: 7
|
|
|
|
deploy:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Vercel CLI
|
|
run: npm install --global vercel@canary
|
|
|
|
- name: Pull Vercel Environment Information
|
|
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
|
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
name: build
|
|
path: .vercel/
|
|
|
|
- name: Deploy Project Artifacts to Vercel
|
|
run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
|