Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 76fdbae

Browse files
committed
chore: upload universal APK in releases and workflow
1 parent e55fabd commit 76fdbae

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ jobs:
9595
with:
9696
name: apk-x86_64-${{ matrix.build_type }}
9797
path: app-x86_64-${{ matrix.build_type }}.apk
98+
- name: Upload universal ${{ matrix.build_type }} APK
99+
uses: actions/upload-artifact@v3
100+
with:
101+
name: apk-universal-${{ matrix.build_type }}
102+
path: app-universal-${{ matrix.build_type }}.apk
98103
- name: Upload ${{ matrix.build_type }} mappings
99104
if: ${{ matrix.build_type == 'release' }}
100105
uses: actions/upload-artifact@v3

.nyx.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ releaseAssets:
2929
description: "AndroidIDE {{version}} armeabi-v7a release APK"
3030
path: app-armeabi-v7a-release.apk
3131
type: application/octet-stream
32+
apk_universal:
33+
fileName: "androidide-{{version}}-universal.apk"
34+
description: "AndroidIDE {{version}} universal release APK"
35+
path: app-universal-release.apk
36+
type: application/octet-stream
3237

3338
releaseTypes:
3439
enabled:

0 commit comments

Comments
 (0)