cmc_fe/create-release.sh
2023-04-03 14:49:10 +01:00

18 lines
280 B
Bash
Executable file

#!/bin/bash
method="patch"
if [[ $1 != "" ]]; then
method=$1
fi
pnpm version $method
if [[ $? != 0 ]]; then
exit
fi
pnpm 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