Skip to content

add: html_code in page.tsx #42

add: html_code in page.tsx

add: html_code in page.tsx #42

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
jobs:
deploy:
name: Deploy to Vercel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
# Deploy using Vercel Action
- name: Deploy to Vercel
uses: amondnet/vercel-action@v20
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
working-directory: ./
vercel-args: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && '--prod' || '' }}