diff --git a/.github/workflows/vercel.yml b/.github/workflows/vercel.yml deleted file mode 100644 index a9e3d0759..000000000 --- a/.github/workflows/vercel.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Deploy to Vercel - -on: - push: - branches: [master] - workflow_dispatch: - -jobs: - deploy: - if: github.ref == 'refs/heads/master' - runs-on: ubuntu-latest - timeout-minutes: 15 - environment: production - permissions: - contents: read - concurrency: - group: vercel-production - cancel-in-progress: false - - env: - VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - - steps: - - name: Checkout - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 - - - name: Setup Node.js - uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6 - with: - node-version: '24' - - - name: Install Vercel CLI - run: npm install --global vercel@59.0.0 - - - name: Pull Vercel environment - run: vercel pull --yes --environment=production --token="${{ secrets.VERCEL_TOKEN }}" - - - name: Build project artifacts - run: vercel build --prod --token="${{ secrets.VERCEL_TOKEN }}" - - - name: Deploy to Vercel - run: vercel deploy --prebuilt --prod --token="${{ secrets.VERCEL_TOKEN }}"