Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
rename gradlew.sh (#9)
Browse files Browse the repository at this point in the history
* rename gradlew.sh to gradlew to maintain consistency across repos

* Fix Github actions to use gradlew instead of gradlew.sh
  • Loading branch information
tillnelown authored May 26, 2022
1 parent a1878f4 commit 4f419dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand All @@ -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
File renamed without changes.

0 comments on commit 4f419dd

Please sign in to comment.