Skip to content

Commit

Permalink
chore: add publish to JSR on push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Sorikairox committed Oct 1, 2024
1 parent fd5a33b commit a9ca06a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish
on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: canary

- name: Publish package
run: deno publish --allow-slow-types

0 comments on commit a9ca06a

Please sign in to comment.