Skip to content

Commit 1bb70e7

Browse files
committed
chore: change by @marvinhagemeister
1 parent 428d6ab commit 1bb70e7

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Deploy
22
on:
33
push:
4-
branches: main
4+
branches: [main]
55
pull_request:
6-
branches: main
6+
branches: [main]
77

88
jobs:
99
deploy:
@@ -23,12 +23,22 @@ jobs:
2323
with:
2424
deno-version: v2.x
2525

26+
- name: Install Node.js
27+
uses: actions/setup-node@v4
28+
with:
29+
node-version: lts/*
30+
31+
- name: Install step
32+
run: "deno install"
33+
2634
- name: Build step
2735
run: "deno task build"
2836

2937
- name: Upload to Deno Deploy
3038
uses: denoland/deployctl@v1
3139
with:
3240
project: "andromeda"
33-
entrypoint: "main.ts"
41+
entrypoint: "_fresh/server.js"
3442
root: "."
43+
44+

0 commit comments

Comments
 (0)