mirror of
https://github.com/Permissionless-Software-Foundation/psf-memo.git
synced 2026-09-21 16:52:01 -07:00
15 lines
246 B
Bash
Executable File
15 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Bash shell script to publish the app to GitHub pages.
|
|
# 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
|
|
git commit -m "Updating GitHub page"
|
|
git push
|