From 1ce9011d609e19dfb3e20fe8e0bf8d626558a8cb Mon Sep 17 00:00:00 2001 From: sstent Date: Sun, 15 Feb 2026 17:50:52 -0800 Subject: [PATCH] Try building with --no-check and Deno v2.x --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a651408..865e5c1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,11 +16,11 @@ jobs: - name: Setup Deno uses: denoland/setup-deno@v2 with: - deno-version: v1.x + deno-version: v2.x - name: Build Plug run: | - deno task build + deno task build -- --no-check ls -lh *.plug.js - name: Commit and push changes