Skip to content

Commit

Permalink
Create jsr-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
izure1 authored Nov 13, 2024
1 parent 7131664 commit 7bdf9f5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/jsr-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package

on:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Publish package
run: npx jsr publish

0 comments on commit 7bdf9f5

Please sign in to comment.