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).
This commit is contained in:
i-trytoohard 2026-05-19 22:24:13 +00:00
parent 341ac17b87
commit 473a747ab1
1 changed files with 1 additions and 1 deletions

View File

@ -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: