You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
CI: Separate Android editor artifacts
This commit is contained in:
20
.github/workflows/android_builds.yml
vendored
20
.github/workflows/android_builds.yml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user