Browse Source

Android: update buil d workflow

master
Patryk Mis 2 years ago
parent
commit
fc3d079f9e
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      .github/workflows/android.yml

+ 7
- 1
.github/workflows/android.yml View File

@@ -24,8 +24,14 @@ jobs:
name: Build ${{ matrix.config }} APK
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: gradle
- name: make
run: cd android ; ./gradlew ${{ matrix.target }}
run: cd android && ./gradlew ${{ matrix.target }} --no-daemon
- name: upload
uses: actions/upload-artifact@v3
with:

Loading…
Cancel
Save