Planning applications tracker for InLinkUK from BT kiosks. https://kiosks.adrianshort.org/
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

18 wiersze
303 B

  1. #!/usr/bin/env sh
  2. # Get the latest code
  3. echo "Getting the latest code"
  4. git pull origin master
  5. echo "Downloading from Morph API"
  6. bundle exec bin/download
  7. echo "Building site"
  8. bundle exec bin/build
  9. cd _site
  10. git commit -am "Update content"
  11. echo "Pushing static site to git"
  12. git push origin master
  13. cd -