docs: atualizar checklist com todas as entregas de 2026-06-17 #49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🚀 Deploy Production — kairos-os-app.vercel.app | |
| on: | |
| push: | |
| branches: | |
| - main # ÚNICO branch que dispara deploy de produção | |
| jobs: | |
| deploy: | |
| name: Deploy to Vercel Production | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⬇️ Checkout | |
| uses: actions/checkout@v4 | |
| - name: 🔧 Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: 📦 Install Vercel CLI | |
| run: npm install --global vercel@latest | |
| - name: 🏗️ Pull Vercel Environment | |
| run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
| working-directory: ./kronos | |
| - name: 🔨 Build Project | |
| run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | |
| working-directory: ./kronos | |
| - name: 🚀 Deploy to Production | |
| run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} | |
| working-directory: ./kronos |