From e66a0eaf9a079fab109fa9e770e7b7419344d388 Mon Sep 17 00:00:00 2001 From: Alphonse Date: Fri, 23 Jan 2026 09:47:57 +0000 Subject: [PATCH] fix: quote run command to fix YAML syntax --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7ea9638..82de4fa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: git config user.email "github-actions[bot]@users.noreply.github.com" - name: Bump version - run: npm version ${{ inputs.version }} -m "chore: bump to version %s" + run: 'npm version ${{ inputs.version }} -m "chore: release %s"' - name: Push changes run: git push origin master --follow-tags