Skip to content

Commit d84b4b9

Browse files
committed
Remove build method
1 parent 513d631 commit d84b4b9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/action.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { mkdirSync, writeFileSync } from "node:fs";
2-
31
export type Step = {
42
command: string;
53
};
@@ -26,10 +24,4 @@ export class Action {
2624

2725
return lines.join("\n") + "\n";
2826
}
29-
30-
public build(output: string) {
31-
const actionYml = this.toString();
32-
mkdirSync(output, { recursive: true });
33-
writeFileSync(`${output}/action.yml`, actionYml);
34-
}
3527
}

0 commit comments

Comments
 (0)