Skip to content

Commit

Permalink
add a GitHub action to publish the package to JSR
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed May 15, 2024
1 parent 0d59d11 commit e91d92e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci

on: [push]

jobs:
deno:
name: publish-to-jsr
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Install deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x

- name: Publish to JSR
run: deno run -A jsr:@david/[email protected]

0 comments on commit e91d92e

Please sign in to comment.