We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8284d8 commit 8998e8eCopy full SHA for 8998e8e
.github/workflows/deploy-android-documentation.yml
@@ -74,4 +74,9 @@ jobs:
74
touch .nojekyll # Prevent GitHub from treating it as a Jekyll site
75
git add .
76
git commit -m "Deploy Dokka documentation" || echo "No changes to commit"
77
- git push --force origin gh-pages
+
78
+ - name: Push Changes with SSH
79
+ run: |
80
+ eval "$(ssh-agent -s)"
81
+ ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
82
+ git push git@github.com:KvColorPalette/KvColorPalette-Android.git gh-pages
0 commit comments