This is an automated email from the ASF dual-hosted git repository.
harishgokul01 pushed a commit to branch development
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/development by this push:
new 75f6f8d5 adding back token info
75f6f8d5 is described below
commit 75f6f8d5551fe7b2a0cda86a15aa60a6be8c3cbb
Author: harish876 <[email protected]>
AuthorDate: Mon Jan 26 04:23:21 2026 +0000
adding back token info
---
.github/workflows/deploy-ecosystem.yml | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/deploy-ecosystem.yml
b/.github/workflows/deploy-ecosystem.yml
index 1ab90800..ba96a90d 100644
--- a/.github/workflows/deploy-ecosystem.yml
+++ b/.github/workflows/deploy-ecosystem.yml
@@ -137,6 +137,12 @@ jobs:
- name: Install Vercel CLI
run: npm install --global vercel@latest
+ - name: Configure Git for Vercel
+ working-directory: ${{ matrix.project.path }}
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "[email protected]"
+
- name: Pull Vercel Environment Information
working-directory: ${{ matrix.project.path }}
env:
@@ -152,19 +158,11 @@ jobs:
vercel pull --yes --environment=production --token=$VERCEL_TOKEN ||
echo "Could not pull Vercel config, continuing..."
- - name: Configure Git for Vercel
- working-directory: ${{ matrix.project.path }}
- run: |
- git config user.name "github-actions[bot]"
- git config user.email "[email protected]"
-
- name: Deploy to Vercel
working-directory: ${{ matrix.project.path }}
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
- VERCEL_ORG_ID: ${{ matrix.project.vercel_org_id ||
secrets.VERCEL_ORG_ID }}
- run: |
- vercel deploy --prod --yes
+ run: vercel deploy --prod --yes --token=$VERCEL_TOKEN
- name: Deployment Summary
if: always()