mirror of
https://github.com/anvaka/graph-start.git
synced 2026-01-18 15:12:42 +00:00
11 lines
228 B
Bash
Executable File
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 ../
|