mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
Adjust docs landing page to include only relevant parts of readme. Add favicon and footer legal info.
16 lines
286 B
Bash
Executable File
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
|