Skip to content

Commit

Permalink
Fix Android build action (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
hegocre committed Oct 3, 2024
1 parent f8bd37f commit df1c419
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Setup JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11
java-version: '17'
distribution: 'zulu'

- name: Make gradlew executable
run: chmod +x ./gradlew
Expand All @@ -29,7 +30,7 @@ jobs:
shell: bash

- name: Upload Default Apk
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
id: upload
with:
name: PR-${{ github.event.number }}
Expand All @@ -45,7 +46,7 @@ jobs:
shell: bash

- name: Upload GooglePlay Apk
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
id: upload-googpe-play
with:
name: PR-${{ github.event.number }}-googleplay
Expand Down

0 comments on commit df1c419

Please sign in to comment.