We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5b6305 commit 61e3942Copy full SHA for 61e3942
1 file changed
.github/workflows/deploy.yml
@@ -1,7 +1,7 @@
1
name: Deploy
2
on:
3
push:
4
- branches: main
+ branches: [main]
5
pull_request:
6
branches: main
7
@@ -21,14 +21,15 @@ jobs:
21
- name: Install Deno
22
uses: denoland/setup-deno@v2
23
with:
24
- deno-version: v2.x
+ deno-version: rc
25
26
- name: Build step
27
- run: "deno task build"
+ working-directory: ./www
28
+ run: "deno task build" # 📝 Update the build command(s) if necessary
29
30
- name: Upload to Deno Deploy
31
uses: denoland/deployctl@v1
32
- project: "test-plugin"
33
- entrypoint: "./www/main.ts"
34
- root: "."
+ project: "fresh" # 📝 Update the deploy project name if necessary
+ entrypoint: "./www/main.ts" # 📝 Update the entrypoint if necessary
35
+ root: "."
0 commit comments