mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
Node server does not need build folder because it generates javascript and sourcemap on the fly.
16 lines
284 B
Bash
Executable File
16 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
|
|
npm run build-docs
|
|
git checkout -- .
|
|
git checkout gh-pages
|
|
\cp -rf -a ./docs/. ./
|
|
git add assets/
|
|
git add classes/
|
|
git add enums/
|
|
git add interfaces/
|
|
git add globals.html
|
|
git add index.html
|
|
git commit -m "Update docs [ci skip]"
|
|
git push origin gh-pages
|
|
git checkout master
|