Skip to content

Commit 0a600c0

Browse files
committed
chore: fix build script
1 parent 3fdb14d commit 0a600c0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
deno-version: v1.x
3232

3333
- name: build step
34-
run: "deno run -A dev.ts build"
34+
run: "deno task build"
3535

3636
- name: update to Deno Deploy
3737
uses: denoland/deployctl@v1

dev.ts

+2
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ import config from "./fresh.config.ts";
66
import "@std/dotenv/load";
77

88
await dev(import.meta.url, "./main.ts", config);
9+
10+
Deno.exit(0);

0 commit comments

Comments
 (0)