mirror of
https://github.com/anvaka/isect.git
synced 2025-12-08 18:26:10 +00:00
12 lines
225 B
Bash
Executable File
12 lines
225 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'
|
|
git push --force git@github.com:anvaka/isect.git main:gh-pages
|
|
cd ../
|
|
git tag `date "+release-%Y%m%d%H%M%S"`
|
|
git push --tags
|