File tree Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,25 @@ jobs:
42
42
working-directory : packages/user-defaults-suite-ios
43
43
run : npm run prepare
44
44
45
- - name : Debug Environment
45
+ - name : Create dummy appclip Info.plist for npx expo-config
46
+ working-directory : packages/clippy
46
47
run : |
47
- echo "Node version: $(node -v)"
48
- echo "npm version: $(npm -v)"
49
- echo "Expo CLI version: $(npx expo --version)"
50
- EXPO_DEBUG=true npx expo config --json --type introspect || echo "Command failed with exit code $?"
48
+ echo "Current directory: $(pwd)"
49
+ mkdir -p ios/ClippyClip
50
+ touch ios/ClippyClip/Info.plist
51
51
52
52
- name : Build and Submit on EAS (iOS and Android)
53
53
if : ${{ github.event.inputs.skip_ios != 'true' && github.event.inputs.skip_android != 'true' }}
54
54
working-directory : packages/clippy
55
- run : EXPO_NO_CAPABILITY_SYNC=1 eas build --platform all --non-interactive # --auto-submit
55
+ run : |
56
+ echo "Current directory: $(pwd)"
57
+ if [[ -f $(pwd)/ios/ClippyClip/Info.plist ]]; then
58
+ echo "Dummy Info.plist exists"
59
+ else
60
+ echo "Dummy Info.plist does not exist"
61
+ fi
62
+
63
+ EXPO_NO_CAPABILITY_SYNC=1 eas build --platform all --non-interactive #--auto-submit
56
64
57
65
- name : Build and Submit on EAS (iOS)
58
66
if : ${{ github.event.inputs.skip_ios != 'true' && github.event.inputs.skip_android == 'true' }}
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