mapillary-js/scripts/push-docs.sh
Oscar Lorentzon 92686fc3fb chore: add specific doc landing page
Adjust docs landing page to include only relevant
parts of readme.
Add favicon and footer legal info.
2020-11-13 22:54:50 +01:00

16 lines
286 B
Bash
Executable File

#!/bin/sh
yarn run build-docs
git checkout -- .
git checkout gh-pages
cp -Rf ./docs/build/. ./
git add assets/
git add classes/
git add enums/
git add interfaces/
git add globals.html
git add index.html
git commit -m "Update documentation"
git push origin gh-pages
git checkout master