cmc_fe/create-release.sh
2023-01-19 13:27:30 +00:00

10 lines
164 B
Bash
Executable file

#!/bin/bash
yarn 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