From 85e5daad8f86be3262be066832c3cb89e59318fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Thu, 30 Jul 2026 14:31:04 +0200 Subject: [PATCH] fix: release.yml: yaml syntax --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07aeeae..25e78bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,10 +80,8 @@ jobs: git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git commit -m "release: sync v${ver} from source-build - - built from source-build commit ${sb} - dated ${sbdate}" + printf 'release: sync v%s from source-build\n\n built from source-build commit %s\n dated %s\n' \ + "$ver" "$sb" "$sbdate" | git commit -F - git push origin HEAD:master # ---------------------------------------------------------------------------