deploy.sh 226 B

123456789101112
  1. harp compile www _build
  2. cd _build
  3. cp -r ../repo/* .
  4. touch .static
  5. git init
  6. git add --all
  7. git commit -m "Automated deployment"
  8. git remote add dokku dokku@candlewaster.co:fdroid-repo
  9. git push -f dokku master
  10. cd ..
  11. rm -rf _build