From 01708154ef52ddf6eccc95fb2741f8a4f206b19d Mon Sep 17 00:00:00 2001 From: michelleyeoh Date: Sun, 18 Jan 2026 17:17:51 -0800 Subject: [PATCH] added vercel vars --- .github/workflows/production.yaml | 2 ++ .github/workflows/staging.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/production.yaml b/.github/workflows/production.yaml index 19823802..eac2fca7 100644 --- a/.github/workflows/production.yaml +++ b/.github/workflows/production.yaml @@ -32,6 +32,8 @@ jobs: - name: Lint and build code, then publish to Vercel run: npx vercel --token ${{ secrets.VERCEL_TOKEN }} -n ${{ vars.VERCEL_PROJECT }} --yes --prod env: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} MONGODB_URI: ${{ secrets.MONGODB_URI }} BASE_URL: ${{ vars.ENV_URL }} AUTH_SECRET: ${{ secrets.AUTH_SECRET }} diff --git a/.github/workflows/staging.yaml b/.github/workflows/staging.yaml index e201a8f5..0931057f 100644 --- a/.github/workflows/staging.yaml +++ b/.github/workflows/staging.yaml @@ -34,6 +34,8 @@ jobs: - name: Lint and build code, then publish to Vercel run: npx vercel --debug --token ${{ secrets.VERCEL_TOKEN }} -n ${{ vars.VERCEL_PROJECT }} --yes --prod env: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} MONGODB_URI: ${{ secrets.MONGODB_URI }} BASE_URL: ${{ vars.ENV_URL }} AUTH_SECRET: ${{ secrets.AUTH_SECRET }}