Skip to content

Commit 537f560

Browse files
committed
Fix filename
1 parent e36aff0 commit 537f560

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/artifact.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export async function uploadToArtifact(
1111

1212
const files = await Promise.all(
1313
reports.map(async ({ repository, diff }) => {
14-
const file = `${repository.directoryName}.path`;
14+
const file = `${repository.directoryName}.diff`;
1515
await writeFile(path.join(GITHUB_WORKSPACE, file), diff);
1616
return file;
1717
}),

0 commit comments

Comments
 (0)