Skip to content

Commit 3b22e79

Browse files
committed
check SE tag before apk upload
1 parent a7b99bd commit 3b22e79

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

github_release.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
PACKAGE_VERSION=$(node -p -e "require('./package.json').version")
22
REPO=sentry-demos/sentry_react_native
33

4+
while true; do
5+
read -p "Is the right value set for SE tag in .env? Answer y/n: " yn
6+
case $yn in
7+
[Yy]* ) break;;
8+
[Nn]* ) exit;;
9+
* ) echo "Please answer y or n.";;
10+
esac
11+
done
12+
413
while true; do
514
read -p "Do you wish to create Github Release $PACKAGE_VERSION for $REPO? Answer y/n: " yn
615
case $yn in

0 commit comments

Comments
 (0)