From 6cc93b5c13c8021594c698bd6326545a68a53562 Mon Sep 17 00:00:00 2001 From: SBakolis Date: Sat, 18 Jul 2026 22:16:13 +0300 Subject: [PATCH] Fix release workflow quoting --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9f04c83..62b97fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,10 +69,10 @@ jobs: - name: Commit version bump run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config user.name 'github-actions[bot]' + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' git add package.json package-lock.json - git commit -m "chore(release): v$(node -p \"require('./package.json').version\")" + git commit -m "chore(release): v$(node -p "require('./package.json').version")" git push origin HEAD:main - run: npm run build:all