Skip to content

Commit 2bb9a55

Browse files
committed
skip updating expo channel
1 parent e92ec35 commit 2bb9a55

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/push-eas-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
push-update:
155155
name: Push EAS Update
156156
runs-on: ubuntu-latest
157-
environment: expo-update
157+
environment: build-exp
158158
# Original dependencies on fingerprint-comparison and approval:
159159
# needs:
160160
# - fingerprint-comparison

scripts/build.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,9 +899,13 @@ else
899899
echo "METAMASK_ENVIRONMENT is set to: $METAMASK_ENVIRONMENT"
900900

901901
fi
902-
# Update Expo channel configuration based on environment
902+
903+
# Update Expo channel configuration based on environment
904+
# Skip when running Expo updates, as channel is managed externally in that flow
905+
if [ "$PLATFORM" != "expo-update" ]; then
903906
echo "Updating Expo channel configuration..."
904907
node "${__DIRNAME__}/update-expo-channel.js"
908+
fi
905909

906910
if [ "$PLATFORM" == "ios" ]; then
907911
# we don't care about env file in CI

0 commit comments

Comments
 (0)