summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2021-08-14 01:55:09 +0200
committerArne Schwabe <arne@rfc2549.org>2021-08-14 01:55:09 +0200
commitded687a7c678550fbe88de372b7e4138643b2f7a (patch)
tree4a4175355fcd99dbd993a6f6547e3b5c68b3759c /.github
parent2bd5c430d01bcbc2087d630d431a793a4c0a497d (diff)
Also build skeleton target in Github actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 7b07a961..65fa66e7 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -4,6 +4,9 @@ on: [push, pull_request]
jobs:
build:
+ strategy:
+ matrix:
+ target: [assembleUiRelease, assembleSkeletonRelease]
runs-on: ubuntu-latest
steps:
- name: Use debug signing
@@ -13,4 +16,4 @@ jobs:
with:
submodules: true
- name: Build the app
- run: ./gradlew assembleUiRelease
+ run: ./gradlew ${{ matrix.target }}