From 6951e132818ca7b7ec303705645e7faef9ffa884 Mon Sep 17 00:00:00 2001 From: Nils Jannasch Date: Sat, 9 May 2026 22:16:52 +0200 Subject: [PATCH] fix(ci): drop stray --- after gh release create in build.yml After the successful `gh release create` step, an orphan `---` line sat at the same indentation as the bash commands inside `run: |` and was executed as a shell command, failing with `command not found` (exit 127). The release itself was already complete (binaries uploaded, release page created), so this only made the workflow run go red after the work was done. --- .github/workflows/build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 60a999f..d01bc3d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -141,5 +141,3 @@ jobs: --notes-file /tmp/release-notes.md \ --generate-notes \ dist/vibecockpit-* - - ---