Files
psf-memo-client/deploy/publish-gh-pages.sh
T
2022-09-03 12:35:04 -07:00

12 lines
200 B
Bash
Executable File

#!/bin/bash
# Bash shell script to publish the app to GitHub pages.
pwd
git checkout gh-pages
git merge master
npm run build
cp -r build docs
git add -A
git commit -m "Updating GitHub page"
git push