File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 99 steps :
1010 - name : Checkout Repo
111112-
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments