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
2 changes: 1 addition & 1 deletion release/libs/_constants.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ APACHE_DIST_DEV_PATH="/dev/parquet"
APACHE_DIST_RELEASE_PATH="/release/parquet"

NEXUS_BASE_URL=${NEXUS_BASE_URL:-"https://repository.apache.org/service/local"}
NEXUS_CONTENT_BASE_URL=${NEXUS_CONTENT_BASE_URL:-"https://repository.apache.org/content/repositories"}
NEXUS_CONTENT_BASE_URL=${NEXUS_CONTENT_BASE_URL:-"${NEXUS_BASE_URL}/repositories"}
NEXUS_STAGING_GROUP_URL="https://repository.apache.org/content/groups/staging/org/apache/parquet/"

NEXUS_PROFILE_NAME="org.apache.parquet"
Expand Down
2 changes: 1 addition & 1 deletion release/libs/_nexus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function nexus_get_staging_repo_metadata {
function nexus_check_staging_artifact {
local repo_id="$1"
local version="$2"
local artifact_url="${NEXUS_CONTENT_BASE_URL}/${repo_id}/${NEXUS_VERIFY_GROUP_PATH}/${NEXUS_VERIFY_ARTIFACT_ID}/${version}/${NEXUS_VERIFY_ARTIFACT_ID}-${version}.pom"
local artifact_url="${NEXUS_CONTENT_BASE_URL}/${repo_id}/content/${NEXUS_VERIFY_GROUP_PATH}/${NEXUS_VERIFY_ARTIFACT_ID}/${version}/${NEXUS_VERIFY_ARTIFACT_ID}-${version}.pom"

if [[ ${DRY_RUN:-1} -eq 1 ]]; then
print_command "Dry-run, WOULD HEAD ${artifact_url}"
Expand Down
Loading