Skip to content

Commit f10e6c2

Browse files
committed
Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch. Lines starting with '#' will be ignored, and an empty message aborts the commit.
2 parents 1299da4 + f3b3b52 commit f10e6c2

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy.yml

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

@@ -16,18 +16,19 @@ jobs:
1616

1717
steps:
1818
- name: Clone repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v3
2020

2121
- name: Install Deno
2222
uses: denoland/setup-deno@v1
2323
with:
2424
deno-version: v1.x
2525

2626
- name: Build step
27-
run: "deno task build" # 📝 Update the build command(s) if necessary
27+
run: "deno task build"
2828

2929
- name: Upload to Deno Deploy
3030
uses: denoland/deployctl@v1
3131
with:
32-
project: "fresh-reverse-proxy-middle" # 📝 Update the deploy project name if necessary
33-
entrypoint: "./main.ts" # 📝 Update the entrypoint if necessary
32+
project: "fresh-reverse-proxy-middle"
33+
entrypoint: "./main.ts"
34+
root: ""

0 commit comments

Comments
 (0)