Skip to content

Commit

Permalink
Build non-release APKs for PRs.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtibbles committed Aug 17, 2023
1 parent 0e8e017 commit 8cb2eff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/githubUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@ const path = require('path');


const file_manifest = {
"apk": {
"extension": "apk",
"description": "Android Package (APK)",
"content_type": "application/vnd.android.package-archive",
},
"deb": {
"extension": "deb",
"description": "Debian Package",
"description": "Debian Package (DEB)",
"content_type": "application/vnd.debian.binary-package",
},
"dmg": {
Expand Down Expand Up @@ -46,6 +51,7 @@ const file_order = [
"exe",
"deb",
"dmg",
"apk",
"zip",
"gz",
]
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/pr_build_kolibri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,10 @@ jobs:
with:
whl-file-name: ${{ needs.whl.outputs.whl-file-name }}
ref: develop
apk:
name: Build APK file
needs: whl
uses: learningequality/kolibri-installer-android/.github/workflows/build_apk.yml@develop
with:
tar-file-name: ${{ needs.whl.outputs.tar-file-name }}
ref: develop

0 comments on commit 8cb2eff

Please sign in to comment.