fix: is this going to be picked up?

Changed files
+8 -7
.tangled
workflows
+8 -7
.tangled/workflows/deploy.yaml
···
- event: ["push", "manual"]
branch: ["main"]
-
engine: "nixery"
-
dependencies:
-
# nixpkgs
nixpkgs:
- deno
- nodejs
···
steps:
- name: Install dependencies
-
command: pnpm install
+
command: |
+
pnpm install
- name: Generate static site
-
command: pnpm generate
+
command: |
+
pnpm generate
- name: Install deployctl
-
command: deno install -gArf jsr:@deno/deployctl
+
command: |
+
deno install -gArf jsr:@deno/deployctl
- name: Deploy to Deno Deploy
-
command: deployctl deploy --project finxol-blog --entrypoint https://deno.land/std@0.140.0/http/file_server.ts --include .output/public
+
command: |
+
deployctl deploy --project finxol-blog --entrypoint https://deno.land/std@0.140.0/http/file_server.ts --include .output/public