Skip to content

Commit 94eaf21

Browse files
update github action with deno.yml
1 parent efdc1df commit 94eaf21

File tree

2 files changed

+22
-31
lines changed

2 files changed

+22
-31
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/deno.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)