From e1f3fe187e05f784246293e3772ea7064dc31acd Mon Sep 17 00:00:00 2001 From: Michael Otto Date: Tue, 3 Mar 2026 12:22:04 +0100 Subject: [PATCH] =?UTF-8?q?Name=20und=20Id=20bei=20Payload=20dekodieren=20?= =?UTF-8?q?erg=C3=A4nzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/update.yml | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/update.yml b/.gitea/workflows/update.yml index fc6e618..e6dfa70 100644 --- a/.gitea/workflows/update.yml +++ b/.gitea/workflows/update.yml @@ -31,14 +31,24 @@ jobs: run: | DECODED=$(echo "${{ github.event.inputs.payload }}" | base64 -d) - echo "plugin=$(echo "$DECODED" | jq -r '.plugin')" >> $GITHUB_OUTPUT - echo "version=$(echo "$DECODED" | jq -r '.version')" >> $GITHUB_OUTPUT - echo "channel=$(echo "$DECODED" | jq -r '.channel')" >> $GITHUB_OUTPUT - echo "description=$(echo "$DECODED" | jq -r '.description')" >> $GITHUB_OUTPUT - echo "author=$(echo "$DECODED" | jq -r '.author')" >> $GITHUB_OUTPUT - echo "email=$(echo "$DECODED" | jq -r '.email')" >> $GITHUB_OUTPUT - echo "url=$(echo "$DECODED" | jq -r '.url')" >> $GITHUB_OUTPUT - echo "changelog=$(echo "$DECODED" | jq -r '.changelog')" >> $GITHUB_OUTPUT + echo "name=$(echo "$DECODED" | jq -r '.name')" >> $GITHUB_OUTPUT + echo "version=$(echo "$DECODED" | jq -r '.version')" >> $GITHUB_OUTPUT + echo "channel=$(echo "$DECODED" | jq -r '.channel')" >> $GITHUB_OUTPUT + echo "description=$(echo "$DECODED" | jq -r '.description')" >> $GITHUB_OUTPUT + echo "author=$(echo "$DECODED" | jq -r '.author')" >> $GITHUB_OUTPUT + echo "email=$(echo "$DECODED" | jq -r '.email')" >> $GITHUB_OUTPUT + echo "qgis_min=$(echo "$DECODED" | jq -r '.qgis_min')" >> $GITHUB_OUTPUT + echo "qgis_max=$(echo "$DECODED" | jq -r '.qgis_max')" >> $GITHUB_OUTPUT + echo "homepage=$(echo "$DECODED" | jq -r '.homepage')" >> $GITHUB_OUTPUT + echo "tracker=$(echo "$DECODED" | jq -r '.tracker')" >> $GITHUB_OUTPUT + echo "repository=$(echo "$DECODED" | jq -r '.repository')" >> $GITHUB_OUTPUT + echo "experimental=$(echo "$DECODED" | jq -r '.experimental')" >> $GITHUB_OUTPUT + echo "deprecated=$(echo "$DECODED" | jq -r '.deprecated')" >> $GITHUB_OUTPUT + echo "qt6=$(echo "$DECODED" | jq -r '.qt6')" >> $GITHUB_OUTPUT + echo "id=$(echo "$DECODED" | jq -r '.id')" >> $GITHUB_OUTPUT + echo "url=$(echo "$DECODED" | jq -r '.url')" >> $GITHUB_OUTPUT + echo "changelog=$(echo "$DECODED" | jq -r '.changelog')" >> $GITHUB_OUTPUT + - name: XML-Datei bestimmen id: xmlfile