Skip to content

Commit e0c1fe1

Browse files
committed
ci: deploy to JSR
1 parent d7b9324 commit e0c1fe1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/publish.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Publish
2+
on:
3+
push:
4+
branch:
5+
- main
6+
workflow_dispatch:
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
12+
permissions:
13+
contents: read
14+
id-token: write
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Setup Deno
20+
# uses: denoland/setup-deno@v1
21+
uses: denoland/setup-deno@v1
22+
with:
23+
deno-version: canary
24+
25+
- name: Publish package
26+
run: deno publish --allow-slow-types

0 commit comments

Comments
 (0)