Update android.yml
This commit is contained in:
parent
5c3e05bc18
commit
bc41da2531
1 changed files with 13 additions and 6 deletions
19
.github/workflows/android.yml
vendored
19
.github/workflows/android.yml
vendored
|
|
@ -12,9 +12,16 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v3
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Build the app
|
||||
run: ./gradlew build
|
||||
- uses: actions/checkout@v3
|
||||
- name: set up JDK 11
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'temurin'
|
||||
cache: gradle
|
||||
- name: Create Local Properties File
|
||||
run: touch local.properties
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
|
|
|
|||
Loading…
Reference in a new issue