Github Pages deploy steps

This commit is contained in:
Bart van der Braak 2020-02-06 17:31:20 +01:00
parent 4cb211c804
commit 2853e00ab1

View file

@ -54,3 +54,19 @@ yarn build
```
yarn lint
```
## Github Pages Deploy
Clone the gh-pages branch (it uses a different `publicpath` module).
Build dist folder:
```
yarn build
```
Remove old root build files
```
rm -rf js img css index.html
```
Move new files to root.
```
rsync -a dist/* .
```