-
-
Notifications
You must be signed in to change notification settings - Fork 782
/
Copy pathrelease.sh
executable file
·71 lines (61 loc) · 1.28 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env bash
set -e
if [[ -z $1 ]]; then
echo "Enter new version: "
read -r VERSION
else
VERSION=$1
fi
PS3='Please enter your choice: '
options=("latest" "beta" "alpha")
select opt in "${options[@]}"
do
case $opt in
"latest")
break
;;
"beta")
RELEASE_TAG='beta'
break
;;
"alpha")
RELEASE_TAG='alpha'
break
;;
*) echo "invalid option $REPLY";;
esac
done
if [[ -z $RELEASE_TAG ]]; then
read -p "Releasing $VERSION (latest) - are you sure? (y/n) " -n 1 -r
else
read -p "Releasing $VERSION ($RELEASE_TAG) - are you sure? (y/n) " -n 1 -r
fi
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo -e "\033[0;32mReleasing $VERSION...\033[0m"
echo
# Build
VERSION=$VERSION npm run build
## Run tests
echo -e "\033[0;32mRunning tests...\033[0m"
npm run lint
npm test 2>/dev/null
# commit
echo -e "\033[0;32mCommitting...\033[0m"
git add -A
git add -f dist/*.js dist/*.ts
git commit -m "Build $VERSION"
# tag version
npm version "$VERSION" --message "Release $VERSION"
git push origin refs/tags/v"$VERSION"
# Push to repo
git push origin master
# Publish
if [[ -z $RELEASE_TAG ]]; then
npm publish
else
npm publish --tag "$RELEASE_TAG"
fi
else
echo -e "\033[0;31mCancelling...\033[0m"
fi