Skip to content

Commit 26d8bd6

Browse files
committed
temp: testing hacks.
1 parent 0d4301d commit 26d8bd6

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

.github/workflows/eas.release.native.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ jobs:
4949
echo "Expo CLI version: $(npx expo --version)"
5050
EXPO_DEBUG=true npx expo config --json --type introspect || echo "Command failed with exit code $?"
5151
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+
5259
- name: Build and Submit on EAS (iOS and Android)
5360
if: ${{ github.event.inputs.skip_ios != 'true' && github.event.inputs.skip_android != 'true' }}
5461
working-directory: packages/clippy

packages/clippy/scripts/setup.sh

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,16 @@ yarn install
2727
fi
2828

2929
# 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
3340

3441

3542
if [[ -z "$EAS_BUILD" ]]; then

0 commit comments

Comments
 (0)