Skip to content

Commit 3131dcf

Browse files
committed
fix: Forgot to ready for publish.yml
1 parent 0681537 commit 3131dcf

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/publish.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# cf. https://jsr.io/@core/unknownutil/3.18.1/.github/workflows/jsr.yml
2+
name: publish
3+
4+
env:
5+
DENO_VERSION: 1.x
6+
7+
on:
8+
push:
9+
tags:
10+
- '*'
11+
12+
permissions:
13+
contents: read
14+
id-token: write # The OIDC ID token is used for authentication with JSR.
15+
16+
17+
jobs:
18+
publish:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Install Deno
23+
uses: denoland/setup-deno@v1
24+
with:
25+
deno-version: ${{ env.DENO_VERSION }}
26+
- name: Publish on tag
27+
run: deno task publish

0 commit comments

Comments
 (0)