merge steps

This commit is contained in:
Ryan Cao
2023-07-18 22:21:33 +08:00
parent ac59a1f6d5
commit 5f586db5bc
6 changed files with 7 additions and 22 deletions

View File

@@ -1,9 +1,11 @@
import { install } from "./stages/install";
import { configure } from "./stages/configure";
import { push } from "./stages/push";
(async () => {
await install();
await configure();
await push();
})().catch((e) => {
console.error(e);
process.exit(1);

View File

@@ -1,8 +0,0 @@
import { push } from "./stages/push";
(async () => {
await push();
})().catch((e) => {
console.error(e);
process.exit(1);
});