diff options
author | Arne Schwabe <arne@rfc2549.org> | 2021-08-14 01:55:09 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2021-08-14 01:55:09 +0200 |
commit | ded687a7c678550fbe88de372b7e4138643b2f7a (patch) | |
tree | 4a4175355fcd99dbd993a6f6547e3b5c68b3759c /.github/workflows | |
parent | 2bd5c430d01bcbc2087d630d431a793a4c0a497d (diff) |
Also build skeleton target in Github actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 5 |
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 }} |