We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc21bcd + d137bb1 commit 9ab5237Copy full SHA for 9ab5237
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
+ jsr:
10
+ name: publish-to-jsr
11
+ runs-on: ubuntu-latest
12
13
+ permissions:
14
+ contents: read
15
+ id-token: write
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - name: Install deno
21
+ uses: denoland/setup-deno@v1
22
+ with:
23
+ deno-version: v1.x
24
25
+ - name: Publish to JSR
26
+ run: deno run -A jsr:@david/publish-on-tag@0.1.3
0 commit comments