We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75f6f8d commit a0aab3cCopy full SHA for a0aab3c
.github/workflows/deploy-ecosystem.yml
@@ -158,6 +158,14 @@ jobs:
158
159
vercel pull --yes --environment=production --token=$VERCEL_TOKEN || echo "Could not pull Vercel config, continuing..."
160
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
+
169
- name: Deploy to Vercel
170
working-directory: ${{ matrix.project.path }}
171
env:
0 commit comments