Skip to content

Commit ab0d002

Browse files
committed
fix: Add last empty line
1 parent ab21a41 commit ab0d002

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/cli/install.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ export type InstalledActionParams<T extends InstalledAction> = Omit<
8080
fs.mkdirSync(path.resolve(process.cwd(), ".github"), { recursive: true });
8181
fs.writeFileSync(
8282
path.resolve(process.cwd(), ".github/actions.json"),
83-
JSON.stringify(actionsJson, null, 2),
83+
JSON.stringify(actionsJson, null, 2) + "\n",
8484
);
8585
fs.writeFileSync(
8686
path.resolve(process.cwd(), ".github/actions-lock.json"),
87-
JSON.stringify(actionsLockJson, null, 2),
87+
JSON.stringify(actionsLockJson, null, 2) + "\n",
8888
);
8989

9090
actionDtsLines.push(

0 commit comments

Comments
 (0)