We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6694718 commit 83e7099Copy full SHA for 83e7099
.github/workflows/deploy-android-documentation.yml
@@ -45,6 +45,9 @@ jobs:
45
run: |
46
git config --global user.name "github-actions[bot]"
47
git config --global user.email "github-actions[bot]@users.noreply.github.com"
48
+
49
+ # Move new documentation
50
+ rsync -av --delete kv-color-palette/build/docs/dokkaHtml/ .
51
52
# Check if gh-pages exists
53
if git ls-remote --exit-code --heads origin gh-pages; then
@@ -55,9 +58,6 @@ jobs:
55
58
git checkout --orphan gh-pages
56
59
fi
57
60
- # Move new documentation
- rsync -av --delete kv-color-palette/build/docs/dokkaHtml/ .
-
61
touch .nojekyll # Prevent GitHub from treating it as a Jekyll site
62
git add .
63
git commit -m "Deploy Dokka documentation" || echo "No changes to commit"
0 commit comments