bdk-ffi/api-docs/kotlin/deploy.sh
2022-11-14 13:10:51 -05:00

9 lines
227 B
Bash

./gradlew dokkaHtml
cd build/dokka/html
git init .
git add .
git switch --create gh-pages
git commit -m "Deploy"
git remote add origin git@github.com:bitcoindevkit/bdk-kotlin.git
git push --set-upstream origin gh-pages --force