diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 46d7e029..d7d58cd3 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -22,6 +22,8 @@ runs: ${{ runner.os }}-yarn-ng- - name: Install dependencies + env: + POD_INSTALL: 0 if: steps.yarn-cache.outputs.cache-hit != 'true' run: yarn install --immutable shell: bash diff --git a/example/package.json b/example/package.json index 14bbc472..75edf59e 100644 --- a/example/package.json +++ b/example/package.json @@ -8,8 +8,8 @@ "start": "react-native start", "build:android": "cd android && ./gradlew assembleRelease --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a", "build:ios": "cd ios && fastlane gym --export_method \"development\" --export_options \"{\\\"compileBitcode\\\":false}\" CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO", - "detex:android": "detox build --configuration android.emu.release", - "detex:ios": "detox build --configuration ios.sim.release" + "detox:android": "detox build --configuration android.emu.release", + "detox:ios": "detox build --configuration ios.sim.release" }, "dependencies": { "@react-native-community/slider": "^4.4.2", diff --git a/scripts/bootstrap.cjs b/scripts/bootstrap.cjs index 61b2f925..da3d4404 100644 --- a/scripts/bootstrap.cjs +++ b/scripts/bootstrap.cjs @@ -43,7 +43,7 @@ module.exports = { } ).status !== 0 ) { - throw new Error('Failed to run pod-install'); + throw new Error('Failed to run ts-interface-builder'); } }, },