mirror of https://github.com/mongodb/mongo
SERVER-109447 skip publish step for atlas (#40206)
GitOrigin-RevId: 61a56d80aba6554b2b63fb5e870fef21a522639c
This commit is contained in:
parent
56510e2584
commit
0b60d33c49
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in New Issue