We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d3c825 commit 13a2e2eCopy full SHA for 13a2e2e
ci/scripts/promote.sh
@@ -61,6 +61,14 @@ if [[ ${RELEASE_TYPE} = "RELEASE" ]]; then
61
if [[ $artifactsPublished = "false" ]]; then
62
echo "Failed to publish"
63
exit 1
64
+ else
65
+ curl \
66
+ -s \
67
+ -u ${BINTRAY_USERNAME}:${BINTRAY_API_KEY} \
68
+ -H "Content-Type: application/json" \
69
+ -d '[ { "name": "gradle-plugin", "values": ["io.spring.javaformat:io.spring.javaformat:spring-javaformat-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