From 473a747ab1b77c960f33f8127abc24eab3b918d3 Mon Sep 17 00:00:00 2001 From: i-trytoohard Date: Tue, 19 May 2026 22:24:13 +0000 Subject: [PATCH] fix(canary): outdent heredoc terminator to column 0 YAML `run: |` strips 10-space base indentation, so `SCRIPT` at 12-space YAML indent lands at column 2 in the shell. Bash `<<` requires the terminator at column 0. Move to 10-space indent (= column 0 after YAML strip). --- .github/workflows/canary.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index e65205df6..ef89b8915 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -118,7 +118,7 @@ jobs: pkgs.forEach(p => body += '"' + p + '": patch\n'); body += '---\n\nchore: canary build\n'; require('fs').writeFileSync('.changeset/canary-temp.md', body); - SCRIPT + SCRIPT fi pnpm changeset version --snapshot nightly env: