diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 8ea3f1b..01ccfb8 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -161,13 +161,16 @@ jobs: JSON=$(jq -n \ --arg tag "$TAG" \ --arg name "Version $VERSION" \ - --arg body "${{ steps.changelog.outputs.current }}" \ - --argjson draft "${{ steps.releaseinfo.outputs.draft }}" \ - --argjson prerelease "${{ steps.releaseinfo.outputs.prerelease }}" \ - '{tag_name: $tag, name: $name, body: $body, draft: $draft, prerelease: $prerelease}') + --arg body "$BODY" \ + --argjson prerelease "$PRERELEASE" \ + '{tag_name: $tag, name: $name, body: $body, prerelease: $PRERELEASE}') env: + PRERELEASE: ${{ steps.daten.outputs.prerelease }} + BODY: ${{ steps.changelog.outputs.current }} + VERSION: ${{ steps.daten.outputs.version }} + TAG: ${{ steps.daten.outputs.version }} PLUGIN_NAME: ${{ steps.daten.outputs.name }} PLUGIN_GROUP: ${{ steps.daten.outputs.group }} RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} \ No newline at end of file