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 efdc1df commit 94eaf21Copy full SHA for 94eaf21
.github/workflows/build.yml
.github/workflows/deno.yml
@@ -0,0 +1,22 @@
1
+name: Deploy
2
+on: [push]
3
+
4
+jobs:
5
+ deploy:
6
+ name: Deploy
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ id-token: write # Needed for auth with Deno Deploy
10
+ contents: read # Needed to clone the repository
11
12
+ steps:
13
+ - name: Clone repository
14
+ uses: actions/checkout@v3
15
16
+ # TODO: add a build step here
17
18
+ - name: Upload to Deno Deploy
19
+ uses: denoland/deployctl@v1
20
+ with:
21
+ project: "minimalist-blog"
22
+ entrypoint: "./serve.ts"
0 commit comments