From 88a62af7c863dda4e1c840d033e83dfcb47ecd04 Mon Sep 17 00:00:00 2001 From: Michael Otto Date: Tue, 3 Mar 2026 09:27:23 +0100 Subject: [PATCH] Release v25 --- .gitea/workflows/release.yml | 39 ------------------------------------ 1 file changed, 39 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index eccc2ae..e2052d3 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -178,45 +178,6 @@ jobs: exit 1 fi - - name: Payload erzeugen - id: payload - run: | - cd repo - - PLUGIN_NAME=$(grep '^name=' metadata.txt | cut -d '=' -f2) - DESCRIPTION=$(grep '^description=' metadata.txt | cut -d '=' -f2) - AUTHOR=$(grep '^author=' metadata.txt | cut -d '=' -f2) - EMAIL=$(grep '^email=' metadata.txt | cut -d '=' -f2) - - VERSION="${{ steps.releaseinfo.outputs.version }}" - CHANNEL="${{ steps.releaseinfo.outputs.channel }}" - ZIP_NAME="${{ steps.zip.outputs.zip_name }}" - CHANGELOG="${{ steps.changelog.outputs.log }}" - - DOWNLOAD_URL="https://${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}/releases/download/${{ github.ref_name }}/${ZIP_NAME}" - - jq -n \ - --arg plugin "$PLUGIN_NAME" \ - --arg version "$VERSION" \ - --arg channel "$CHANNEL" \ - --arg description "$DESCRIPTION" \ - --arg author "$AUTHOR" \ - --arg email "$EMAIL" \ - --arg url "$DOWNLOAD_URL" \ - --arg changelog "$CHANGELOG" \ - '{ - plugin: $plugin, - version: $version, - channel: $channel, - description: $description, - author: $author, - email: $email, - url: $url, - changelog: $changelog - }' > payload.json - - echo "payload=$(cat payload.json)" >> $GITHUB_OUTPUT - - name: Payload erzeugen run: | cd repo