blob: c485b77ac26e48adbf8d078a29d432d68310622d [file] [log] [blame]
Derick Montagueaae43122020-01-03 08:36:20 -06001#!/usr/bin/env sh
2# This is the script to deploy documentation only
3
4# abort on errors
5set -e
6
7# build
8npm run docs:build
9
10# navigate into the build output directory
11cd docs/.vuepress/dist
12
13git init
14git add -A
15git commit -m 'deploy'
16
17# push to gh-pages repo
18git push -f git@github.com:openbmc/webui-vue.git master:gh-pages
19cd -