We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e31cb commit 774e188Copy full SHA for 774e188
.github/workflows/gradle.yml
@@ -27,7 +27,11 @@ jobs:
27
uses: gradle/actions/setup-gradle@v4
28
29
- name: Build with Gradle Wrapper
30
- run: ./gradlew build
+ uses: nick-fields/retry@v3
31
+ with:
32
+ timeout_minutes: 10
33
+ max_attempts: 3
34
+ command: ./gradlew build
35
36
dependency-submission:
37
runs-on: ubuntu-latest
.github/workflows/publish.yml
@@ -23,10 +23,10 @@ jobs:
23
24
25
26
+ run: ./gradlew build -x test
- name: Publish to Maven Repositories
- run: ./gradlew publish
+ run: ./gradlew publish -x test
env:
USERNAME: ${{ github.actor }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments