Skip to content

Commit 7f73f0c

Browse files
committed
Add jsr publish action
1 parent 2aa5929 commit 7f73f0c

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/jsr.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish to NPM
2+
on:
3+
release:
4+
types: [released]
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
10+
permissions:
11+
contents: read
12+
id-token: write
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Publish package
18+
run: npx jsr publish

jsr.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "@hexagon/proper-tags",
3+
"version": "2.0.2",
4+
"exports": "./dist/proper-tags.js"
5+
}

0 commit comments

Comments
 (0)