Skip to content

Commit 5f72ad6

Browse files
committed
ci: add deploy ci
1 parent 986c989 commit 5f72ad6

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/deploy.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
workflow_dispatch:
7+
8+
permissions:
9+
id-token: write
10+
contents: read
11+
12+
jobs:
13+
test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Setup deno
20+
uses: denoland/setup-deno@v1
21+
with:
22+
deno-version: v1.x
23+
24+
- name: Deploy to Deno Deploy
25+
uses: denoland/deployctl@v1
26+
with:
27+
project: pulsate-blog
28+
entrypoint: main.ts

0 commit comments

Comments
 (0)