Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# 6. Publish to Maven Central via Sonatype, signed with the project
# GPG key.
# 7. Poll Maven Central until the new version is visible.
# 8. Ask javadoc.io to ingest the new Javadocs.
#
# Re-publishing a failed release: re-run this workflow with the same
# version. If the tag already exists, the tag-creation step is skipped
Expand Down Expand Up @@ -156,6 +157,7 @@ jobs:
# braintrust-otel-extension artifact (fat jar, no sources/javadoc)
OTL_EXT_JAR=$(find braintrust-otel-extension/build/libs -name "braintrust-otel-extension-${VERSION}.jar" | head -1)

echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "sdk-main-jar=$SDK_MAIN_JAR" >> $GITHUB_OUTPUT
echo "sdk-sources-jar=$SDK_SOURCES_JAR" >> $GITHUB_OUTPUT
echo "sdk-javadoc-jar=$SDK_JAVADOC_JAR" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -231,3 +233,8 @@ jobs:
VERSION="${TAG#v}"
echo "Waiting for version $VERSION to sync to Maven Central. THIS CAN TAKE MANY HOURS! Godspeed"
./scripts/wait-for-maven.sh "$VERSION"

# javadoc.io is no longer auto-ingesting doc jars, so we'll poke it to trigger an update
- name: Trigger javadoc.io ingestion
continue-on-error: true
run: ./scripts/trigger-javadoc-io.sh "${{ steps.find-artifacts.outputs.version }}"
Loading
Loading