We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 428d6ab commit 1bb70e7Copy full SHA for 1bb70e7
.github/workflows/deploy.yml
@@ -1,9 +1,9 @@
1
name: Deploy
2
on:
3
push:
4
- branches: main
+ branches: [main]
5
pull_request:
6
7
8
jobs:
9
deploy:
@@ -23,12 +23,22 @@ jobs:
23
with:
24
deno-version: v2.x
25
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
34
- name: Build step
35
run: "deno task build"
36
37
- name: Upload to Deno Deploy
38
uses: denoland/deployctl@v1
39
40
project: "andromeda"
- entrypoint: "main.ts"
41
+ entrypoint: "_fresh/server.js"
42
root: "."
43
44
0 commit comments