pure/scripts/deploy.sh

8 lines
275 B
Bash
Raw Normal View History

2020-05-16 18:09:14 +00:00
git config --global user.name "${GH_NAME}"
git config --global user.email "${GH_EMAIL}"
echo "machine github.com login ${GH_NAME} password ${GH_TOKEN}" > ~/.netrc
2020-05-16 18:18:43 +00:00
npm run prepare
2020-05-16 18:23:09 +00:00
cp -rf ./build/ ./site/static/css/pure/
2020-05-16 18:09:14 +00:00
cd site
npm install
GIT_USER="${GH_NAME}" npm run deploy