We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ee22d commit 18536a1Copy full SHA for 18536a1
scripts/build.sh
@@ -646,6 +646,12 @@ buildAndroidReleaseE2E(){
646
buildExpoUpdate() {
647
echo "Build Expo Update $METAMASK_BUILD_TYPE started..."
648
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
+
655
# Validate required Expo Update environment variables
656
if [ -z "${EXPO_CHANNEL}" ]; then
657
echo "::error title=Missing EXPO_CHANNEL::EXPO_CHANNEL environment variable is not set. Cannot publish update." >&2
0 commit comments