Refining GH pages deployment script

This commit is contained in:
Chris Troutner
2022-09-03 13:08:37 -07:00
parent 1fb7c2d09f
commit ddacdd9285
+6 -3
View File
@@ -1,9 +1,12 @@
#!/bin/bash
# Bash shell script to publish the app to GitHub pages.
pwd
git checkout gh-pages
git merge master
# Ensure you are in the gh-pages branch.
#pwd
#git checkout gh-pages
#git merge master
npm run build
cp -r build docs
git add -A