Skip to content

docs(content): add viral tok project #14

docs(content): add viral tok project

docs(content): add viral tok project #14

Workflow file for this run

name: "[CD] vercel production deployment"
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
jobs:
# call-release:
# name: Call release.yml
# uses: dc7devs/dcdev.me/.github/workflows/release.yml@main
# secrets: inherit
call-lint:
name: Call lint.yml
uses: dc7devs/dcdev.me/.github/workflows/lint.yml@main
call-sync-dev:
name: Call sync-dev-branch.yml
uses: dc7devs/dcdev.me/.github/workflows/sync-dev-branch.yml@main
deploy:
name: Deploy to production
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.13.x
- name: Install PNPM
run: npm i -g pnpm
- name: Install vercel CLI
run: |
pnpm install
npm i --global vercel@latest
- 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: Deploy project artifacts to vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}