Skip to content

Commit 30624e2

Browse files
artifact path
1 parent aa37f9e commit 30624e2

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

.github/workflows/test_android.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,27 @@ jobs:
99
steps:
1010
- name: Checkout Repo
1111
uses: actions/[email protected]
12-
12+
1313
- name: Download artifact
1414
uses: actions/download-artifact@v4
1515
with:
1616
name: BabylonReactNative
17-
path: .
17+
path: ./artifact
1818
- name: Install build package
1919
run: |
20-
unzip ../../BabylonReactNative.zip
21-
npm install ../../babylonjs-react-native-0.0.1.tgz
20+
unzip ../../artifact/BabylonReactNative.zip
21+
npm install ../../artifact/babylonjs-react-native-0.0.1.tgz
2222
working-directory: ./Apps/Playground
2323

24+
- name: List downloaded files (debugging)
25+
run: ls -R ./artifact
26+
2427
- name: Gulp (Android)
2528
run: npx gulp buildAndroid
2629
working-directory: ./Package
27-
30+
31+
- name: Upload APK
32+
uses: actions/upload-artifact@v4
33+
with:
34+
name: 'AndroidAPK'
35+
path: Apps/Playground/android/app/build/outputs/apk/release/app-release.apk

.github/workflows/test_ios.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ jobs:
1414
uses: actions/download-artifact@v4
1515
with:
1616
name: BabylonReactNative
17-
path: .
17+
path: ./artifact
1818
- name: Install build package
1919
run: |
20-
unzip ../../BabylonReactNative.zip
21-
npm install ../../babylonjs-react-native-0.0.1.tgz
20+
unzip ../../artifact/BabylonReactNative.zip
21+
npm install ../../artifact/babylonjs-react-native-0.0.1.tgz
2222
working-directory: ./Apps/Playground
2323

24+
- name: List downloaded files (debugging)
25+
run: ls -R ./artifact
26+
2427
- name: Clean and Install Pods
2528
run: |
2629
cd ios

0 commit comments

Comments
 (0)