Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/create-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ jobs:
git commit -m "docs: update demo recording" \
-m "Auto-generated by create-demo workflow." \
-m "[skip ci]"
# Pull any new commits to avoid race condition with other workflows
git pull --rebase origin main || {
echo "⚠️ Rebase failed, trying merge strategy"
git rebase --abort 2>/dev/null || true
git pull origin main
}

git push
echo "✓ Demo updated and committed"
else
Expand Down