From 7131cf384a49e8f2bb08c87cbcae249a3e4a7f0d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 13 Apr 2026 09:17:26 +0200 Subject: [PATCH] Fix YAML indentation in website workflow heredoc The heredoc body for version.js was at column 0 while the surrounding run block is indented 10 spaces, causing YAML to terminate the block scalar and fail with 'Invalid workflow file' at line 146. Replace the heredoc with a grouped echo block that respects the block indentation. --- .github/workflows/website.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 34d54cd65..ed156f6a1 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -142,13 +142,13 @@ jobs: commit_hash=$(git rev-parse HEAD) commit_short=$(git rev-parse --short HEAD) commit_date=$(git show -s --format=%cI HEAD) - cat > ../uutils.github.io/static/wasm/version.js < ../uutils.github.io/static/wasm/version.js echo "uutils WASM build: ${commit_short} (${commit_date})" fi