Skip to content

Commit 61e3942

Browse files
committed
Update deploy.yml
1 parent c5b6305 commit 61e3942

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 7 additions & 6 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

@@ -21,14 +21,15 @@ jobs:
2121
- name: Install Deno
2222
uses: denoland/setup-deno@v2
2323
with:
24-
deno-version: v2.x
24+
deno-version: rc
2525

2626
- name: Build step
27-
run: "deno task build"
27+
working-directory: ./www
28+
run: "deno task build" # 📝 Update the build command(s) if necessary
2829

2930
- name: Upload to Deno Deploy
3031
uses: denoland/deployctl@v1
3132
with:
32-
project: "test-plugin"
33-
entrypoint: "./www/main.ts"
34-
root: "."
33+
project: "fresh" # 📝 Update the deploy project name if necessary
34+
entrypoint: "./www/main.ts" # 📝 Update the entrypoint if necessary
35+
root: "."

0 commit comments

Comments
 (0)