Fix E2E test report upload URL (#2776)

* Fix E2E test report upload URL
This commit is contained in:
mvitale1989 2023-06-28 20:20:03 +02:00 committed by GitHub
parent 3f352a6718
commit 1da06bcf23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ async function saveArtifacts() {
filesToUpload,
10,
async.asyncify(async (file) => {
const Key = file.replace(uploadPath, s3Folder);
const Key = file.replace(uploadPath, s3Folder).replaceAll('\\', '/');
const contentType = mime.lookup(file);
const charset = mime.charset(contentType);