Skip to content

Commit

Permalink
chore: fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Apr 10, 2024
1 parent 3fdb14d commit 0a600c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
deno-version: v1.x

- name: build step
run: "deno run -A dev.ts build"
run: "deno task build"

- name: update to Deno Deploy
uses: denoland/deployctl@v1
Expand Down
2 changes: 2 additions & 0 deletions dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ import config from "./fresh.config.ts";
import "@std/dotenv/load";

await dev(import.meta.url, "./main.ts", config);

Deno.exit(0);

0 comments on commit 0a600c0

Please sign in to comment.