@@ -388,12 +388,18 @@ def __init__(self, task_name, suffix_commands, orchestration=True, **kwargs):
388
388
'sh .evergreen/debian_package_build.sh' ),
389
389
s3_put (local_file = 'deb.tar.gz' ,
390
390
remote_file = '${branch_name}/mongo-c-driver-debian-packages-${CURRENT_VERSION}.tar.gz' ,
391
+ content_type = '${content_type|application/x-gzip}' ),
392
+ s3_put (local_file = 'deb.tar.gz' ,
393
+ remote_file = '${project}/${branch_name}/${revision}/${version_id}/${build_id}/${execution}/mongo-c-driver-debian-packages.tar.gz' ,
391
394
content_type = '${content_type|application/x-gzip}' )]),
392
395
NamedTask ('rpm-package-build' ,
393
396
commands = [
394
397
shell_mongoc ('sh .evergreen/build_snapshot_rpm.sh' ),
395
398
s3_put (local_file = 'rpm.tar.gz' ,
396
399
remote_file = '${branch_name}/mongo-c-driver-rpm-packages-${CURRENT_VERSION}.tar.gz' ,
400
+ content_type = '${content_type|application/x-gzip}' ),
401
+ s3_put (local_file = 'rpm.tar.gz' ,
402
+ remote_file = '${project}/${branch_name}/${revision}/${version_id}/${build_id}/${execution}/mongo-c-driver-rpm-packages.tar.gz' ,
397
403
content_type = '${content_type|application/x-gzip}' )]),
398
404
NamedTask ('install-uninstall-check-mingw' ,
399
405
depends_on = OD ([('name' , 'make-release-archive' ),
0 commit comments