Skip to content

Commit

Permalink
chore: setup publish task
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Sep 30, 2024
1 parent 4a2f6fb commit 594bf64
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: rc
- run: deno task test
- run: deno publish

0 comments on commit 594bf64

Please sign in to comment.