Skip to content

Commit f1b38b6

Browse files
committed
add fix for artifact debug
1 parent 6a72559 commit f1b38b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browserstack-report-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41960,7 +41960,7 @@ class ArtifactManager {
4196041960
core.warning('Artifact API not available. Report saved locally only.');
4196141961
return `File saved locally at: ${filePath}`;
4196241962
}
41963-
const artifactName = `browserstack`;
41963+
const artifactName = `browserstack_results`;
4196441964
const uploadResult = await artifactClient.uploadArtifact(
4196541965
artifactName,
4196641966
[filePath],

browserstack-report-action/src/utils/ArtifactManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ArtifactManager {
5050
core.warning('Artifact API not available. Report saved locally only.');
5151
return `File saved locally at: ${filePath}`;
5252
}
53-
const artifactName = `browserstack`;
53+
const artifactName = `browserstack_results`;
5454
const uploadResult = await artifactClient.uploadArtifact(
5555
artifactName,
5656
[filePath],

0 commit comments

Comments
 (0)