Skip to content

Commit

Permalink
run EAS without git
Browse files Browse the repository at this point in the history
  • Loading branch information
yousif-bugsnag committed Feb 5, 2024
1 parent dbd058e commit 0673ec8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion features/scripts/build-android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pushd features/fixtures/test-app

ls -al

eas build \
EAS_NO_VCS=1 eas build \
--local \
-p android \
--output output.apk
Expand Down
8 changes: 5 additions & 3 deletions features/scripts/build-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ npm install

cp $EXPO_UNIVERSAL_CREDENTIALS_DIR/* .

git init
git add .
git commit -m "Initial commit"
# git init
# git config --global user.email "you@example.com"
# git config --global user.name "Bugsnag"
# git add .
# git commit -m "Initial commit"

echo "Common setup complete"
2 changes: 1 addition & 1 deletion features/scripts/build-ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

pushd features/fixtures/test-app

eas build \
EAS_NO_VCS=1 eas build \
--local \
-p ios \
--output output.ipa \
Expand Down

0 comments on commit 0673ec8

Please sign in to comment.