cmc_fe/create-release.sh

11 lines
177 B
Bash
Raw Normal View History

2023-01-19 13:55:12 +01:00
#!/bin/bash
2023-03-22 14:14:53 +01:00
yarn version
2023-01-19 14:11:42 +01:00
yarn build
2023-01-19 14:27:30 +01:00
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