SERVER-109447 skip publish step for atlas (#40206)

GitOrigin-RevId: 61a56d80aba6554b2b63fb5e870fef21a522639c
This commit is contained in:
Daniel Moody 2025-08-18 15:19:57 -05:00 committed by MongoDB Bot
parent 56510e2584
commit 0b60d33c49
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,11 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
packagesfile=packages.tgz
# we are not publishing atlas packages
if [[ "${repo_edition}" == "atlas" ]]; then
exit 0
fi
curl https://s3.amazonaws.com/mciuploads/${project}/${build_variant}/${revision}/artifacts/${build_id}-packages.tgz >>$packagesfile
podman run \