Skip to content

Commit

Permalink
Merge pull request #16568 from jherico/ga/fix_s3
Browse files Browse the repository at this point in the history
Fix GA S3 upload path
  • Loading branch information
jherico authored Dec 10, 2019
2 parents 2703392 + 1ac7215 commit b4fc9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci-scripts/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def main():
bucket_name = os.environ['BUCKET_NAME']
upload_prefix = os.environ['UPLOAD_PREFIX']
release_number = os.environ['RELEASE_NUMBER']
full_prefix = upload_prefix + '/' + release_number[0:-2] + '/' + release_number + '/'
full_prefix = upload_prefix + '/' + release_number[0:-2] + '/' + release_number
S3 = boto3.client('s3')
path = os.path.join(os.getcwd(), os.environ['ARTIFACT_PATTERN'])
files = glob.glob(path, recursive=False)
Expand Down

0 comments on commit b4fc9c2

Please sign in to comment.