File tree Expand file tree Collapse file tree 5 files changed +32
-10
lines changed
Expand file tree Collapse file tree 5 files changed +32
-10
lines changed Original file line number Diff line number Diff line change @@ -123,3 +123,10 @@ jobs:
123123 large-packages : false
124124 docker-images : false
125125 swap-storage : false
126+
127+ - name : Download App File
128+ uses : actions/download-artifact@v3
129+ with :
130+ name : release-App-debug
131+ path : |
132+ ./apps/mobile/android/app/build/outputs/apk/google/debug
Original file line number Diff line number Diff line change @@ -113,3 +113,9 @@ jobs:
113113 path : |
114114 ./apps/web-embed/web-build
115115 if-no-files-found : error
116+
117+ - name : Download WebEmbed Artifacts
118+ uses : actions/download-artifact@v3
119+ with :
120+ name : upload-web-embed-artifacts
121+ path : ./apps/web-embed/web-build
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ jobs:
2323 with :
2424 lfs : true
2525
26- - name : Run Shared Env Setup
26+ - name : Run Shared Env Setup
2727 uses : ./.github/actions/shared-env
2828 with :
29- env_file_name : " .env.expo"
29+ env_file_name : ' .env.expo'
3030 sentry_project : ' '
3131 covalent_key : ${{ secrets.COVALENT_KEY }}
3232 sentry_token : ${{ secrets.SENTRY_TOKEN }}
3737 revenuecat_api_key_apple : ${{ secrets.REVENUECAT_API_KEY_APPLE }}
3838 revenuecat_api_key_google : ${{ secrets.REVENUECAT_API_KEY_GOOGLE }}
3939
40-
41-
4240 - name : Setup Node
4341 uses : actions/setup-node@v3
4442 with :
8785 yarn app:web-embed:build
8886 cd apps/mobile/ios
8987 xcodebuild -workspace OneKeyWallet.xcworkspace -configuration Debug -scheme OneKeyWallet -sdk iphonesimulator -derivedDataPath ./outputs
90-
88+
9189 - name : Zip artifact
9290 run : |
9391 cd apps/mobile/ios/outputs/Build/Products/Debug-iphonesimulator
10199 ./apps/mobile/ios/outputs/Build/Products/Debug-iphonesimulator/OneKeyWallet-Debug.zip
102100 if-no-files-found : error
103101
104-
102+ - name : Download App File
103+ uses : actions/download-artifact@v3
104+ with :
105+ name : release-App-debug
106+ path : ./apps/mobile/ios/outputs/Build/Products/Debug-iphonesimulator/OneKeyWallet-Debug.zip
Original file line number Diff line number Diff line change 11name : release-ios
22
33on :
4+ pull_request :
5+ branches :
6+ - feat/prime-login0-limi
7+ push :
8+ branches :
9+ - feat/prime-login0-limi
410 workflow_run :
511 workflows :
612 - daily-build
Original file line number Diff line number Diff line change @@ -171,10 +171,11 @@ export function HeaderRight({
171171 onPress = { onScanButtonPressed }
172172 />
173173 ) ;
174- const primeButton =
175- devSettings ?. enabled && devSettings ?. settings ?. showPrimeTest ? (
176- < PrimeHeaderIconButton key = "prime" />
177- ) : null ;
174+ // const primeButton =
175+ // devSettings?.enabled && devSettings?.settings?.showPrimeTest ? (
176+ // <PrimeHeaderIconButton key="prime" />
177+ // ) : null;
178+ const primeButton = < PrimeHeaderIconButton key = "prime" /> ;
178179 let notificationsButton : ReactNode | null = (
179180 < Stack key = "notifications" testID = "headerRightNotificationsButton" >
180181 < HeaderIconButton
You can’t perform that action at this time.
0 commit comments