|
@@ -103,7 +103,27 @@ jobs:
|
|
cd ../../..
|
|
cd ../../..
|
|
ls -l bin/android_editor_builds/
|
|
ls -l bin/android_editor_builds/
|
|
|
|
|
|
|
|
+ # Separate different editors for multiple artifacts
|
|
|
|
+ mkdir horizonos
|
|
|
|
+ mv bin/android_editor_builds/*-horizonos-* horizonos
|
|
|
|
+ mkdir picoos
|
|
|
|
+ mv bin/android_editor_builds/*-picoos-* picoos
|
|
|
|
+
|
|
- name: Upload artifact
|
|
- name: Upload artifact
|
|
uses: ./.github/actions/upload-artifact
|
|
uses: ./.github/actions/upload-artifact
|
|
with:
|
|
with:
|
|
name: ${{ matrix.cache-name }}
|
|
name: ${{ matrix.cache-name }}
|
|
|
|
+
|
|
|
|
+ - name: Upload artifact (Horizon OS)
|
|
|
|
+ if: matrix.target == 'editor'
|
|
|
|
+ uses: ./.github/actions/upload-artifact
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ matrix.cache-name }}-horizonos
|
|
|
|
+ path: horizonos
|
|
|
|
+
|
|
|
|
+ - name: Upload artifact (PICO OS)
|
|
|
|
+ if: matrix.target == 'editor'
|
|
|
|
+ uses: ./.github/actions/upload-artifact
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ matrix.cache-name }}-picoos
|
|
|
|
+ path: picoos
|