Skip to content

Commit

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

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
uses: denoland/setup-deno@v1
with:
deno-version: canary

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

0 comments on commit e0c1fe1

Please sign in to comment.