Skip to content

Commit

Permalink
[eas-expo-go] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brentvatne committed Jun 26, 2023
1 parent 381b468 commit 5718668
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/eas-expo-go/scripts/eas-build-on-success.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ if [[ "$EAS_BUILD_PROFILE" == "release-client" ]]; then

TITLE=""
if [[ "$EAS_BUILD_PLATFORM" = "android" ]]; then
TITLE="Successfull Expo Go release build. Submitting build to the Play Store."
TITLE="Successful Expo Go release build. Submitting build to the Play Store."
elif [[ "$EAS_BUILD_PLATFORM" = "ios" ]]; then
TITLE="Successfull Expo Go release build. Submitting build to the TestFlight."
TITLE="Successful Expo Go release build. Submitting build to the TestFlight."
fi
MESSAGE="Release triggered by: $EAS_BUILD_USERNAME\\nCommit author: $COMMIT_AUTHOR\\n$EAS_BUILD_MESSAGE_PART\\n$GITHUB_MESSAGE_PART"

Expand All @@ -61,9 +61,9 @@ if [[ "$EAS_BUILD_PROFILE" == "publish-client" ]]; then
source $ROOT_DIR/secrets/expotools.env
if [[ "$EAS_BUILD_PLATFORM" == "android" ]]; then
et eas android-apk-publish
notify_slack "Successfull Expo Go Android APK build. Published to S3 and updated staging versions endpoint" "$MESSAGE"
notify_slack "Successful Expo Go Android APK build. Published to S3 and updated staging versions endpoint" "$MESSAGE"
elif [[ "$EAS_BUILD_PLATFORM" == "ios" ]]; then
et eas ios-simulator-publish
notify_slack "Successfull Expo Go iOS simulator build. Published to S3 and updated staging versions endpoint" "$MESSAGE"
notify_slack "Successful Expo Go iOS simulator build. Published to S3 and updated staging versions endpoint" "$MESSAGE"
fi
fi

0 comments on commit 5718668

Please sign in to comment.