We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab21a41 commit ab0d002Copy full SHA for ab0d002
lib/cli/install.ts
@@ -80,11 +80,11 @@ export type InstalledActionParams<T extends InstalledAction> = Omit<
80
fs.mkdirSync(path.resolve(process.cwd(), ".github"), { recursive: true });
81
fs.writeFileSync(
82
path.resolve(process.cwd(), ".github/actions.json"),
83
- JSON.stringify(actionsJson, null, 2),
+ JSON.stringify(actionsJson, null, 2) + "\n",
84
);
85
86
path.resolve(process.cwd(), ".github/actions-lock.json"),
87
- JSON.stringify(actionsLockJson, null, 2),
+ JSON.stringify(actionsLockJson, null, 2) + "\n",
88
89
90
actionDtsLines.push(
0 commit comments