From 44079d525a74b99d24f98a302317fd835e579020 Mon Sep 17 00:00:00 2001 From: sstent Date: Sun, 15 Feb 2026 15:55:57 -0800 Subject: [PATCH] Use Deno v1.x and add debugging to workflow --- .github/workflows/publish.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index efd4e05..a651408 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,22 +16,23 @@ jobs: - name: Setup Deno uses: denoland/setup-deno@v2 with: - deno-version: v2.x - + deno-version: v1.x - name: Build Plug - run: deno task build + run: | + deno task build + ls -lh *.plug.js - name: Commit and push changes run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add icalendar.plug.js - if git diff --quiet && git diff --staged --quiet; then + if git diff --quiet --staged; then echo "No changes to commit" else git commit -m "Build and update icalendar.plug.js [skip ci]" - git push + git push --force fi - name: Upload Build Artifact