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 b1399db commit 042d495Copy full SHA for 042d495
ci/scripts/promote.sh
@@ -61,6 +61,14 @@ if [[ $RELEASE_TYPE = "RELEASE" ]]; then
61
if [[ $ARTIFACTS_PUBLISHED = "false" ]]; then
62
echo "Failed to publish"
63
exit 1
64
+ else
65
+ curl \
66
+ -s \
67
+ -u ${BINTRAY_USERNAME}:${BINTRAY_PASSWORD} \
68
+ -H "Content-Type: application/json" \
69
+ -d '[ { "name": "gradle-plugin", "values": ["org.springframework.boot:org.springframework.boot:spring-boot-gradle-plugin"] } ]' \
70
+ -X POST \
71
+ https://api.bintray.com/packages/${BINTRAY_SUBJECT}/${BINTRAY_REPO}/${groupId}/versions/${version}/attributes > /dev/null || { echo "Failed to add attributes" >&2; exit 1; }
72
fi
73
74
0 commit comments