From 61992077ec61644005a6813aaaa71f4c548d10a3 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 19 Jun 2025 12:42:32 +0200 Subject: [PATCH 1/2] update yml --- .github/workflows/deploy.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 69493eb..111e9d5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,10 +24,7 @@ jobs: - name: Build project run: npm run build + # This step will trigger Vercel deployment via GitHub integration + # Make sure you have connected your GitHub repo to Vercel - name: Deploy to Vercel - uses: amondnet/vercel-action@v25 - with: - vercel-token: ${{ secrets.VERCEL_TOKEN }} - vercel-org-id: ${{ secrets.ORG_ID }} - vercel-project-id: ${{ secrets.PROJECT_ID }} - vercel-args: '--prod' \ No newline at end of file + run: echo "Deployment will be handled by Vercel GitHub integration" \ No newline at end of file From 536c1dddc39ba21b89332ff9a84d7fc95ec3b2e3 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 19 Jun 2025 12:48:44 +0200 Subject: [PATCH 2/2] update vercel deployment --- .github/workflows/deploy.yml | 30 ------------------------------ vercel.json | 2 +- 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 111e9d5..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Deploy to Vercel - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Build project - run: npm run build - - # This step will trigger Vercel deployment via GitHub integration - # Make sure you have connected your GitHub repo to Vercel - - name: Deploy to Vercel - run: echo "Deployment will be handled by Vercel GitHub integration" \ No newline at end of file diff --git a/vercel.json b/vercel.json index 96622e0..0704e6c 100644 --- a/vercel.json +++ b/vercel.json @@ -15,7 +15,7 @@ }, { "src": "/(.*)", - "dest": "/server/index.ts" + "dest": "/index.html" } ], "functions": {