Skip to content

Commit

Permalink
Build release on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed May 9, 2024
1 parent e6e3572 commit 72e15e9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/Android-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,26 @@ jobs:
with:
name: IOIO-Lint-report
path: applications/**/build/reports/lint-results.html

buildRelease:
name: Release
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macOS-14 ]
java_version: [ 17 ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install JDK ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: ${{ matrix.java_version }}
- name: build release
run: ./gradlew assembleRelease
env:
VERSION: ${{ github.ref }}

0 comments on commit 72e15e9

Please sign in to comment.