Skip to content

publish

publish #5

Workflow file for this run

name: publish
on:
workflow_dispatch:
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
jobs:
build-test-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x # Run with latest stable Deno.
- name: Test
run: deno test -A
- name: Release to JSR
run: deno publish --allow-dirty