Skip to content

Commit 18536a1

Browse files
committed
check if expo_token is set
1 parent 39ee22d commit 18536a1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,12 @@ buildAndroidReleaseE2E(){
646646
buildExpoUpdate() {
647647
echo "Build Expo Update $METAMASK_BUILD_TYPE started..."
648648

649+
if [ -z "${EXPO_TOKEN}" ]; then
650+
echo "EXPO_TOKEN is NOT set in build.sh env"
651+
else
652+
echo "EXPO_TOKEN is set in build.sh env (value masked by GitHub Actions logs)"
653+
fi
654+
649655
# Validate required Expo Update environment variables
650656
if [ -z "${EXPO_CHANNEL}" ]; then
651657
echo "::error title=Missing EXPO_CHANNEL::EXPO_CHANNEL environment variable is not set. Cannot publish update." >&2

0 commit comments

Comments
 (0)