We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c7bd5f + 1aa545a commit 60f02d9Copy full SHA for 60f02d9
.github/workflows/ci.yml
@@ -95,7 +95,12 @@ jobs:
95
java-version: 8
96
97
- name: Build and publish to Bintray/MavenCentral
98
- run: ./gradlew --debug bintrayUpload githubRelease
+ run: |
99
+ # Print output every minute to avoid Github Actions timeout
100
+ while sleep 1m; do echo "=====[ $SECONDS seconds elapsed -- still running ]====="; done &
101
+ ./gradlew bintrayUpload githubRelease
102
+ # Killing background sleep loop
103
+ kill %1
104
env:
105
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
106
BINTRAY_API_KEY: ${{secrets.BINTRAY_API_KEY}}
0 commit comments