File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 24
24
run : |
25
25
deno run -A --unstable-kv main.ts init -t tsirysndr/base-workspace
26
26
deno run -A --unstable-kv main.ts up
27
- deno run -A --unstable-kv main.ts logs
28
27
docker ps
29
28
- name : Destroy
30
29
run : |
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { existsSync } from "node:fs";
3
3
import { POCKETENV_CACHE_DIR } from "../consts.ts" ;
4
4
import { spawn } from "../lib.ts" ;
5
5
import * as workspaces from "../workspaces.ts" ;
6
+ import showLogs from "./logs.ts" ;
6
7
7
8
async function up (
8
9
{
@@ -70,6 +71,7 @@ async function up(
70
71
createdAt : result ?. createdAt || new Date ( ) . toISOString ( ) ,
71
72
updatedAt : new Date ( ) . toISOString ( ) ,
72
73
} ) ;
74
+ await showLogs ( { follow : false } ) ;
73
75
}
74
76
75
77
export default up ;
You can’t perform that action at this time.
0 commit comments