3
0

gitea actions ng18

This commit is contained in:
Michael Otto
2026-03-17 14:57:10 +01:00
parent 428fa3e2a5
commit 2a2bde07bf

View File

@@ -161,13 +161,16 @@ jobs:
JSON=$(jq -n \ JSON=$(jq -n \
--arg tag "$TAG" \ --arg tag "$TAG" \
--arg name "Version $VERSION" \ --arg name "Version $VERSION" \
--arg body "${{ steps.changelog.outputs.current }}" \ --arg body "$BODY" \
--argjson draft "${{ steps.releaseinfo.outputs.draft }}" \ --argjson prerelease "$PRERELEASE" \
--argjson prerelease "${{ steps.releaseinfo.outputs.prerelease }}" \ '{tag_name: $tag, name: $name, body: $body, prerelease: $PRERELEASE}')
'{tag_name: $tag, name: $name, body: $body, draft: $draft, prerelease: $prerelease}')
env: 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_NAME: ${{ steps.daten.outputs.name }}
PLUGIN_GROUP: ${{ steps.daten.outputs.group }} PLUGIN_GROUP: ${{ steps.daten.outputs.group }}
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}