Skip to content

Commit

Permalink
feat(action): add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Hajime-san committed Feb 26, 2024
1 parent aede000 commit 3a9ec69
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish to jsr

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read # need for checkout
id-token: write # The OIDC ID token is used for authentication with JSR.
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- run: deno publish

0 comments on commit 3a9ec69

Please sign in to comment.