Compare commits

..

4 Commits

Author SHA1 Message Date
Goutam0612 c9c2773f11 fix: let Vercel build remotely instead of building in Gitea runner
Deploy to Vercel / deploy (push) Successful in 1m57s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-25 01:54:49 +05:30
Goutam0612 0ebe27c0af fix: use Node 22 in deploy workflow (pnpm requires >=22.13)
Deploy to Vercel / deploy (push) Failing after 4m52s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-25 01:35:37 +05:30
Goutam0612 c5ba64a699 ci: test auto-deploy trigger
Deploy to Vercel / deploy (push) Failing after 1m39s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-25 01:19:50 +05:30
Goutam0612 1d7b5faefa ci: add Gitea Actions workflow for auto-deploy to Vercel
Deploy to Vercel / deploy (push) Failing after 1m0s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-25 01:13:03 +05:30
+31
View File
@@ -0,0 +1,31 @@
name: Deploy to Vercel
# Jab bhi 'revamp' branch pe push hoga, yeh automatically Vercel pe deploy kar dega.
# Build Vercel ke servers pe hota hai (runner sirf code upload karta hai) — fast & reliable.
on:
push:
branches:
- revamp
jobs:
deploy:
runs-on: ubuntu-latest
# Org aur Project ID secret nahi hain — yahin rakh diye taaki sirf VERCEL_TOKEN secret add karna pade
env:
VERCEL_ORG_ID: team_uSdJB1WvSXC3ilPP28AAsJ1z
VERCEL_PROJECT_ID: prj_frXDAngP1brs10g3lUsMa0xCBB9X
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install Vercel CLI
run: npm install -g vercel@latest
- name: Deploy to production (Vercel builds remotely)
run: vercel deploy --prod --yes --token="$VERCEL_TOKEN"