Skip to content

Commit

Permalink
Update CICD pipeline: update JDK version
Browse files Browse the repository at this point in the history
  • Loading branch information
albertogeniola committed Nov 14, 2024
1 parent 1e7fbcd commit fdae323
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: set up JDK 1.17
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 1.17
java-version: 17
distribution: oracle
- name: Build the app
run: ./gradlew assembleDebug --stacktrace
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: set up JDK 1.17
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 1.17
java-version: 17
distribution: oracle
- name: Build the APK
run: ./gradlew assRU
Expand Down

0 comments on commit fdae323

Please sign in to comment.