Skip to content

Commit 9399f3c

Browse files
authored
Merge pull request #259 from bugsnag/lemnik/fix-release-docker
Fix the docker-release script
2 parents d1ea218 + 6ee9ddd commit 9399f3c

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 4.0.0 - 2025-08-04
3+
## 4.0.0 - 2026-04-29
44

55
* This major release modernises the Java notifier with breaking changes to align with current Bugsnag conventions, drop legacy Java/Servlet support, and add new capabilities like feature flags. [#254](https://github.com/bugsnag/bugsnag-java/pull/254)
66
* @see [UPGRADING](UPGRADING.md) for upgrade details.

scripts/docker-publish.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ elif [[ "${#REPO_KEYS[@]}" -gt 1 ]]; then
5050
exit 1
5151
fi
5252

53-
REPO_KEY="${REPO_KEYS[1]}"
53+
REPO_KEY="${REPO_KEYS[0]}"
5454
echo "Closing repository $REPO_KEY..."
5555

5656
URL="https://ossrh-staging-api.central.sonatype.com/manual/upload/repository/$REPO_KEY?publishing_type=user_managed"
@@ -66,7 +66,4 @@ if [[ "$STATUS" != "200" ]]; then
6666
fi
6767

6868
echo "Repository $REPO_KEY closed successfully."
69-
7069
echo "Go to https://central.sonatype.com/publishing to release the final artefact."
71-
echo "For full release instructions, visit:"
72-
echo "https://github.com/bugsnag/bugsnag-java/blob/next/CONTRIBUTING.md#making-a-release"

0 commit comments

Comments
 (0)