From 54595de1bdad14207e011a28961a153232680244 Mon Sep 17 00:00:00 2001 From: Edgars Date: Fri, 27 Mar 2026 14:32:51 +0000 Subject: [PATCH] fix(ci): fix bash syntax error in docs workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Swap quote nesting in node -p command — outer single quotes, inner double quotes — so bash doesn't consume the escapes. --- .github/workflows/cli-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli-docs.yml b/.github/workflows/cli-docs.yml index 85796e55..7a732e3d 100644 --- a/.github/workflows/cli-docs.yml +++ b/.github/workflows/cli-docs.yml @@ -35,7 +35,7 @@ jobs: echo "value=${{ github.event.release.tag_name }}" >> $GITHUB_OUTPUT else # Prefer package.json version when not a release event - echo "value=$(node -p \"require('./package.json').version\")" >> $GITHUB_OUTPUT + echo "value=$(node -p 'require("./package.json").version')" >> $GITHUB_OUTPUT fi - name: Generate CLI docs (MDX)