We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb4b8aa commit 78c3644Copy full SHA for 78c3644
.github/workflows/deploy-android-documentation.yml
@@ -55,8 +55,14 @@ jobs:
55
git checkout --orphan gh-pages
56
fi
57
58
- # Move new documentation
59
- rsync -av --delete kv-color-palette/build/docs/dokkaHtml/ .
+ # Ensure the build folder exists
+ if [ ! -d "kv-color-palette/build/docs/dokkaHtml" ]; then
60
+ echo "Dokka documentation not found!"
61
+ exit 1
62
+ fi
63
+
64
+ # Sync documentation (ignore harmless vanishing file warnings)
65
+ rsync -av --delete kv-color-palette/build/docs/dokkaHtml/ . || true
66
67
touch .nojekyll # Prevent GitHub from treating it as a Jekyll site
68
git add .
0 commit comments