File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 49
49
echo "Expo CLI version: $(npx expo --version)"
50
50
EXPO_DEBUG=true npx expo config --json --type introspect || echo "Command failed with exit code $?"
51
51
52
+ - name : Create dummy appclip Info.plist for npx expo-config
53
+ working-directory : packages/clippy
54
+ run : |
55
+ echo "Current directory: $(pwd)"
56
+ mkdir -p ios/ClippyClip
57
+ touch ios/ClippyClip/Info.plist
58
+
52
59
- name : Build and Submit on EAS (iOS and Android)
53
60
if : ${{ github.event.inputs.skip_ios != 'true' && github.event.inputs.skip_android != 'true' }}
54
61
working-directory : packages/clippy
Original file line number Diff line number Diff line change @@ -27,9 +27,16 @@ yarn install
27
27
fi
28
28
29
29
# prepare the user-defaults-suite-ios module
30
- # echo "Preparing the UserDefaults native module..."
31
- # yarn workspace user-defaults-suite-ios clean
32
- # yarn workspace user-defaults-suite-ios prepare
30
+ echo " Preparing the UserDefaults native module..."
31
+ yarn workspace user-defaults-suite-ios clean
32
+ yarn workspace user-defaults-suite-ios prepare
33
+
34
+ if [[ " $EAS_BUILD " ]]; then
35
+ if [[ -d ${IOS_DIR} ]]; then
36
+ echo " Deleting ios directory from CI step"
37
+ rm -rf $IOS_DIR
38
+ fi
39
+ fi
33
40
34
41
35
42
if [[ -z " $EAS_BUILD " ]]; then
You can’t perform that action at this time.
0 commit comments