Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh authored Sep 23, 2023
1 parent ceea7f9 commit c71e923
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/prepare-build-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ runs:
uses: gradle/[email protected]
with:
cache-read-only: false
- name: Download Gradle Wrapper and print version
run: |
# Retry 3 times before the steps actually fails
(echo "==== Gradle Wrapper Download Attempt: 1 ====" && ./gradlew --version) || \
(echo "==== Gradle Wrapper Download Attempt: 2 ====" && ./gradlew --version) || \
(echo "==== Gradle Wrapper Download Attempt: 3 ====" && ./gradlew --version) || \
(echo "==== Gradle Wrapper Download Failed ====" && exit 1)

0 comments on commit c71e923

Please sign in to comment.