Test komplette metadata.txt
All checks were successful
Release Plugin / release (push) Successful in 5s

This commit is contained in:
Michael Otto
2026-03-03 11:28:58 +01:00
parent 495a4ac049
commit 5d12fefb1d
2 changed files with 21 additions and 12 deletions

View File

@@ -91,10 +91,18 @@ jobs:
CONTENT=$(cat "$TEMPLATE")
CONTENT="${CONTENT//\{\{NAME\}\}/${{ steps.info.outputs.name }}}"
CONTENT="${CONTENT//\{\{QGIS_MIN\}\}/${{ steps.info.outputs.qgisMinimumVersion }}}"
CONTENT="${CONTENT//\{\{QGIS_MAX\}\}/${{ steps.info.outputs.qgisMaximumVersion }}}"
CONTENT="${CONTENT//\{\{DESCRIPTION\}\}/${{ steps.info.outputs.description }}}"
CONTENT="${CONTENT//\{\{VERSION\}\}/${{ steps.releaseinfo.outputs.version }}}"
CONTENT="${CONTENT//\{\{AUTHOR\}\}/${{ steps.info.outputs.author }}}"
CONTENT="${CONTENT//\{\{EMAIL\}\}/${{ steps.info.outputs.email }}}"
CONTENT="${CONTENT//\{\{VERSION\}\}/${{ steps.releaseinfo.outputs.version }}}"
CONTENT="${CONTENT//\{\{HOMEPAGE\}\}/${{ steps.info.outputs.homepage }}}"
CONTENT="${CONTENT//\{\{TRACKER\}\}/${{ steps.info.outputs.tracker }}}"
CONTENT="${CONTENT//\{\{REPOSITORY\}\}/${{ steps.info.outputs.repository }}}"
CONTENT="${CONTENT//\{\{EXPERIMENTAL\}\}/${{ steps.info.outputs.experimental }}}"
CONTENT="${CONTENT//\{\{DEPRECATED\}\}/${{ steps.info.outputs.deprecated }}}"
CONTENT="${CONTENT//\{\{QT6\}\}/${{ steps.info.outputs.supportsQt6 }}}"
printf "%s\n" "$CONTENT" > "$OUT"

View File

@@ -1,13 +1,14 @@
[general]
name={{PLUGIN}}
qgisMinimumVersion=3.0
qgisMaximumVersion=3.99
name={{NAME}}
qgisMinimumVersion={{QGIS_MIN}}
qgisMaximumVersion={{QGIS_MAX}}
description={{DESCRIPTION}}
version=@VERSION@
author=Daniel Helbig, Michael Otto
email=daniel.helbig@kreis-meissen.de, michael.otto@landkreis-mittelsachsen.de
homepage=https://entwicklung.flurneuordnung-sachsen.de/AG_QGIS/Plugin_Test_Action
tracker=https://entwicklung.flurneuordnung-sachsen.de/AG_QGIS/Plugin_Test_Action/issues
repository=https://entwicklung.flurneuordnung-sachsen.de/AG_QGIS/Plugin_Test_Action
experimental=True
deprecated=False
version={{VERSION}}
author={{AUTHOR}}
email={{EMAIL}}
homepage={{HOMEPAGE}}
tracker={{TRACKER}}
repository={{REPOSITORY}}
experimental={{EXPERIMENTAL}}
deprecated={{DEPRECATED}}
supportsQt6={{QT6}}