14 lines
243 B
Bash
Executable file
14 lines
243 B
Bash
Executable file
#!/bin/bash
|
|
|
|
method="patch"
|
|
if [[ $1 != "" ]]; then
|
|
method=$1
|
|
fi
|
|
npm version $method
|
|
npm run build
|
|
if [[ $? == 0 ]]; then
|
|
tar czf cmc_fe.tar.gz dist
|
|
git add . cmc_fe.tar.gz
|
|
git commit -m "updated cmc_fe.tar.gz"
|
|
git push
|
|
fi
|