Skip to content

feat(frontend): ✨ comments in feed, new styles in create form #58

feat(frontend): ✨ comments in feed, new styles in create form

feat(frontend): ✨ comments in feed, new styles in create form #58

name: Vercel Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
paths:
- "frontend/**"
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Install dependencies
run: npm install
- name: Deploy to Vercel
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} # Configura la variable de entorno
run: npm run deploy -w frontend