We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fdb14d commit 0a600c0Copy full SHA for 0a600c0
.github/workflows/deploy.yml
@@ -31,7 +31,7 @@ jobs:
31
deno-version: v1.x
32
33
- name: build step
34
- run: "deno run -A dev.ts build"
+ run: "deno task build"
35
36
- name: update to Deno Deploy
37
uses: denoland/deployctl@v1
dev.ts
@@ -6,3 +6,5 @@ import config from "./fresh.config.ts";
6
import "@std/dotenv/load";
7
8
await dev(import.meta.url, "./main.ts", config);
9
+
10
+Deno.exit(0);
0 commit comments