Skip to content

Commit a0aab3c

Browse files
committed
checking if deployment authorship works
1 parent 75f6f8d commit a0aab3c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/deploy-ecosystem.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,14 @@ jobs:
158158
159159
vercel pull --yes --environment=production --token=$VERCEL_TOKEN || echo "Could not pull Vercel config, continuing..."
160160
161+
- name: Create deployment commit with correct author
162+
run: |
163+
# Configure git user
164+
git config user.name "github-actions[bot]"
165+
git config user.email "support@resilientdb.com"
166+
# Create an empty commit with correct author for Vercel to see
167+
git commit --allow-empty -m "ci: authorize deploy for ${{ matrix.project.name }}" || echo "Skipping commit creation"
168+
161169
- name: Deploy to Vercel
162170
working-directory: ${{ matrix.project.path }}
163171
env:

0 commit comments

Comments
 (0)