bdk-ffi/api-docs/kotlin/deploy.sh

9 lines
227 B
Bash
Raw Normal View History

2022-09-08 09:33:36 -04:00
./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