Skip to content

Commit f2a14c9

Browse files
fix ci
1 parent c20ac08 commit f2a14c9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/sample-application.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,17 @@ jobs:
115115
export RN_ARCHITECTURE="${{ matrix.rn-architecture }}"
116116
[[ "${{ matrix.build-type }}" == "production" ]] && export CONFIG='release' || export CONFIG='debug'
117117
118-
../scripts/set-dsn-aos.mjs
119-
../scripts/build-android.sh -PreactNativeArchitectures=x86
118+
./scripts/set-dsn-aos.mjs
119+
./scripts/build-android.sh -PreactNativeArchitectures=x86
120120
121121
- name: Build iOS App
122122
if: ${{ matrix.platform == 'ios' }}
123-
working-directory: ${{ env.REACT_NATIVE_SAMPLE_PATH }}/ios
123+
working-directory: ${{ env.REACT_NATIVE_SAMPLE_PATH }}
124124
run: |
125125
[[ "${{ matrix.build-type }}" == "production" ]] && export CONFIG='Release' || export CONFIG='Debug'
126126
127-
../scripts/set-dsn-ios.mjs
128-
../scripts/build-ios.sh
127+
./scripts/set-dsn-ios.mjs
128+
./scripts/build-ios.sh
129129
130130
- name: Build macOS App
131131
if: ${{ matrix.platform == 'macos' }}

samples/react-native-macos/scripts/pod-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ echo "ENABLE_NEW_ARCH=$ENABLE_NEW_ARCH"
1212
cd "${thisFilePath}/.."
1313
bundle install
1414

15-
cd ios
15+
cd macos
1616
PRODUCTION=$ENABLE_PROD RCT_NEW_ARCH_ENABLED=$ENABLE_NEW_ARCH bundle exec pod update
1717

1818
cat Podfile.lock | grep $RN_SENTRY_POD_NAME

0 commit comments

Comments
 (0)