Skip to content

hopefully final fix for delete bug #14

hopefully final fix for delete bug

hopefully final fix for delete bug #14

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Format and lint
run: deno task format
- name: Run tests
run: deno task test
- name: Publish package
if: success()
run: deno publish --allow-dirty