1 parent e6063b2 commit 686834cCopy full SHA for 686834c
1 file changed
.github/workflows/testflight-internal-release.yml
@@ -127,6 +127,19 @@ jobs:
127
working-directory: source
128
run: npx expo prebuild --clean --platform ios --no-install
129
130
+ - name: Declare export compliance for the released source
131
+ if: steps.preflight.outputs.decision == 'upload'
132
+ working-directory: source
133
+ shell: bash
134
+ run: |
135
+ info_plist='ios/SwitchifyRemote/Info.plist'
136
+ /usr/libexec/PlistBuddy \
137
+ -c 'Set :ITSAppUsesNonExemptEncryption false' \
138
+ "$info_plist" 2> /dev/null || \
139
140
+ -c 'Add :ITSAppUsesNonExemptEncryption bool false' \
141
+ "$info_plist"
142
+
143
- name: Install CocoaPods dependencies
144
if: steps.preflight.outputs.decision == 'upload'
145
working-directory: source/ios
0 commit comments