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 513d631 commit d84b4b9Copy full SHA for d84b4b9
lib/action.ts
@@ -1,5 +1,3 @@
1
-import { mkdirSync, writeFileSync } from "node:fs";
2
-
3
export type Step = {
4
command: string;
5
};
@@ -26,10 +24,4 @@ export class Action {
26
24
27
25
return lines.join("\n") + "\n";
28
}
29
30
- public build(output: string) {
31
- const actionYml = this.toString();
32
- mkdirSync(output, { recursive: true });
33
- writeFileSync(`${output}/action.yml`, actionYml);
34
- }
35
0 commit comments