Skip to content

Commit 0f9bcfc

Browse files
committed
CDRIVER-3265 fix "upload release" function
1 parent 7b6ca69 commit 0f9bcfc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ functions:
4646
set -o xtrace
4747
[ -f mongoc/cmake_build/mongo*gz ] && mv mongoc/cmake_build/mongo*gz mongoc.tar.gz
4848
- command: s3.put
49-
params: {aws_key: '${aws_key}', aws_secret: '${aws_secret}', remote_file: 'mongo-c-driver/${branch_name}/mongo-c-driver-${CURRENT_VERSION}.tar.gz',
49+
params: {aws_key: '${aws_key}', aws_secret: '${aws_secret}', remote_file: '${project}/${branch_name}/mongo-c-driver-${CURRENT_VERSION}.tar.gz',
5050
bucket: mciuploads, permissions: public-read, local_file: mongoc.tar.gz, content_type: '${content_type|application/x-gzip}'}
5151
upload build:
5252
- command: archive.targz_pack

build/evergreen_config_lib/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
r'[ -f mongoc/cmake_build/mongo*gz ] && mv mongoc/cmake_build/mongo*gz mongoc.tar.gz',
5353
errexit=False, test=False),
5454
s3_put(
55-
'mongo-c-driver/${branch_name}/mongo-c-driver-${CURRENT_VERSION}.tar.gz',
55+
'${project}/${branch_name}/mongo-c-driver-${CURRENT_VERSION}.tar.gz',
5656
project_path=False, aws_key='${aws_key}',
5757
aws_secret='${aws_secret}', local_file='mongoc.tar.gz',
5858
bucket='mciuploads', permissions='public-read',

0 commit comments

Comments
 (0)