Skip to content

Commit 139e669

Browse files
limichangelimichange
authored andcommitted
feat: test ci
1 parent da28085 commit 139e669

File tree

5 files changed

+32
-10
lines changed

5 files changed

+32
-10
lines changed

.github/workflows/release-android-debug.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/release-android.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/release-ios-debug.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff 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 }}
@@ -37,8 +37,6 @@ jobs:
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:
@@ -87,7 +85,7 @@ jobs:
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
@@ -101,4 +99,8 @@ jobs:
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

.github/workflows/release-ios.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: release-ios
22

33
on:
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

packages/kit/src/components/TabPageHeader/HeaderRight.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)