From 09d3ba2157b3869f480efb866c6fa2f4eb81146b Mon Sep 17 00:00:00 2001
From: Michael Otto <22ottomi@noreply.localhost>
Date: Mon, 2 Mar 2026 13:38:02 +0100
Subject: [PATCH] .gitea/workflows/release.yml aktualisiert
---
.gitea/workflows/release.yml | 30 ++++++++++++++++--------------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml
index 6eac123..23ecc46 100644
--- a/.gitea/workflows/release.yml
+++ b/.gitea/workflows/release.yml
@@ -186,20 +186,22 @@ jobs:
NAME="${{ steps.cfg.outputs.name }}"
VERSION="${{ steps.info.outputs.version }}"
- BLOCK=$(printf ' \n %s\n %s\n %s\n %s\n %s\n %s\n %s\n %s\n %s\n %s\n %s\n ' \
- "$NAME" \
- "$VERSION" \
- "${{ steps.cfg.outputs.description }}" \
- "${{ steps.cfg.outputs.qgis_min }}" \
- "${{ steps.cfg.outputs.qgis_max }}" \
- "${{ steps.cfg.outputs.author }}" \
- "${{ steps.cfg.outputs.email }}" \
- "${{ steps.cfg.outputs.homepage }}" \
- "${{ steps.cfg.outputs.tracker }}" \
- "${{ steps.cfg.outputs.repository }}" \
- "${{ steps.download_url.outputs.download_url }}" \
- "${{ steps.cfg.outputs.experimental }}" \
- "${{ steps.cfg.outputs.deprecated }}")
+ BLOCK=$(cat <
+ ${{ steps.cfg.outputs.description }}
+ ${{ steps.cfg.outputs.qgis_min }}
+ ${{ steps.cfg.outputs.qgis_max }}
+ ${{ steps.cfg.outputs.author }}
+ ${{ steps.cfg.outputs.email }}
+ ${{ steps.cfg.outputs.homepage }}
+ ${{ steps.cfg.outputs.tracker }}
+ ${{ steps.cfg.outputs.repository }}
+ ${{ steps.upload_asset.outputs.download_url }}
+ ${{ steps.cfg.outputs.experimental }}
+ ${{ steps.cfg.outputs.deprecated }}
+
+ EOF
+ )
BLOCK_ESCAPED=$(printf '%s' "$BLOCK" | sed 's/"/\\"/g')
echo "block=${BLOCK_ESCAPED}" >> $GITHUB_OUTPUT