Compare commits

..

No commits in common. "7266d1fcd3950e31fc613d24230c67ed061852c8" and "72c93594f68935b691b6951f72e5a8ad831fb4c0" have entirely different histories.

View File

@ -10,6 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
@ -28,7 +29,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
cache: 'gradle'
@ -54,7 +55,7 @@ jobs:
- name: Get app version
id: get_version
run: echo "VERSION_NAME=$(grep -m1 "versionName" app/build.gradle | awk '{print $2}' | tr -d \'\'\"\')" >> $GITHUB_ENV
run: echo "VERSION_NAME=$(grep -m1 "versionName" app/build.gradle | awk '{print $2}' | tr -d \''"\')" >> $GITHUB_ENV
- name: Change wrapper permissions
run: chmod +x ./gradlew