From dba0099bbb508a7404dd44e75efc0c498713f136 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 22 Jan 2026 21:26:11 -0500 Subject: [PATCH] fix: silence pnpm output of detect-spec-changes --- .github/workflows/gh-pages-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml index d41e3524f..653f1e552 100644 --- a/.github/workflows/gh-pages-deploy.yml +++ b/.github/workflows/gh-pages-deploy.yml @@ -34,7 +34,7 @@ jobs: - name: Detect changed specs id: detect-changes run: | - CHANGED=$(pnpm detect-spec-changes) + CHANGED=$(pnpm -s detect-spec-changes) echo "specUrls=$CHANGED" >> $GITHUB_OUTPUT - name: Upload static files as artifact