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 6e5f3a1 commit 56376feCopy full SHA for 56376fe
.github/workflows/release.yml
@@ -78,6 +78,17 @@ jobs:
78
close: true
79
release: true
80
generate-checksums: true
81
+ - name: Await
82
+ shell: bash
83
+ run: |
84
+ url=${{ format('https://repo.maven.apache.org/maven2/io/spring/develocity/conventions/develocity-conventions-core/{0}/develocity-conventions-core-{0}.jar', needs.get-version.outputs.version) }}
85
+ echo "Waiting for $url"
86
+ until curl --fail --head --silent $url > /dev/null
87
+ do
88
+ echo "."
89
+ sleep 60
90
+ done
91
+ echo "$url is available"
92
promote-release:
93
name: Promote release
94
needs:
0 commit comments