rename gradlew.sh (#9)

* rename gradlew.sh to gradlew to maintain consistency across repos

* Fix Github actions to use gradlew instead of gradlew.sh
This commit is contained in:
tillnelown 2022-05-27 00:08:19 +02:00 committed by GitHub
parent a1878f4ae9
commit 4f419dd915
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -27,10 +27,10 @@ jobs:
distribution: 'zulu'
- name: Grant execute permission for gradlew
run: chmod +x gradlew.sh
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew.sh --no-daemon build
run: ./gradlew --no-daemon build
- name: Github Tag Bump
uses: anothrNick/github-tag-action@1.39.0
@ -46,4 +46,4 @@ jobs:
file: ./app/build/outputs/apk/release/*.apk
tag: ${{ steps.bump_version.outputs.new_tag }}
token: ${{ secrets.GITHUB_TOKEN }}
file_glob: true
file_glob: true

View File