Updated Wiki content

OrcaSlicerBot
2026-01-26 16:52:31 +00:00
parent 600a5250ac
commit 901b03834c

@@ -39,7 +39,17 @@ jobs:
- name: Clone orca-website repository
run: |
git clone --depth 1 https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/OrcaSlicer/orca-website.git orca-website
for attempt in 1 2 3; do
echo "Clone attempt $attempt"
if git clone --depth 1 https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/OrcaSlicer/orca-website.git orca-website; then
break
fi
if [ "$attempt" -eq 3 ]; then
echo "Clone failed after $attempt attempts"
exit 1
fi
sleep $((attempt * 15))
done
- name: Deploy wiki content
run: |