Skip to content

chore(test): replace Jest by Vitest (#15) #25

chore(test): replace Jest by Vitest (#15)

chore(test): replace Jest by Vitest (#15) #25

name: Vercel Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
paths:
- '*.json'
- 'packages/app/**'
jobs:
Deploy-Production:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
environment: production
concurrency: production
defaults:
run:
working-directory: packages/app
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm i -g vercel@latest
- name: Pull Vercel environment
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project
run: |
export PUBLIC_URL=https://palabras-encadenadas.app/
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}