graph-start/deploy.sh
2022-06-26 15:57:37 -07:00

11 lines
228 B
Bash
Executable File

#!/bin/sh
rm -rf ./dist
npm run build
cd ./dist
git init
git add .
git commit -m 'push to gh-pages'
## Change the line below to deploy to your gh-pages
git push --force git@github.com:anvaka/graph-start.git main:gh-pages
cd ../