Skip to content

Commit

Permalink
Merge pull request #371 from ytai/BuildReleaseOnCI
Browse files Browse the repository at this point in the history
Build release on CI
  • Loading branch information
hannesa2 authored May 9, 2024
2 parents e6e3572 + 72e15e9 commit a82ab20
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 a82ab20

Please sign in to comment.