fix(ci): replace heredoc with printf to avoid YAML parsing errors

This commit is contained in:
enzo 2026-05-13 00:25:15 +02:00
parent 7a79619c6b
commit fb82856ecf

View file

@ -43,13 +43,7 @@ jobs:
run: |
VERSION=${{ steps.version.outputs.version }}
DATE=$(date -R)
cat > debian/changelog <<EOF
full-updater (${VERSION}) unstable; urgency=medium
* Auto-built release from commit ${GITHUB_SHA}
-- Forgejo CI <ci@geronzi.fr> ${DATE}
EOF
printf '%s\n' "full-updater (${VERSION}) unstable; urgency=medium" "" " * Auto-built release from commit ${GITHUB_SHA}" "" " -- Forgejo CI <ci@geronzi.fr> ${DATE}" > debian/changelog
- name: Install build dependencies
run: |