Compare commits

...

3 Commits
v50 ... v57

Author SHA1 Message Date
Michael Otto
dac2a8e973 Release v57 2026-03-03 12:55:38 +01:00
Michael Otto
0fa2861040 Optimierungen 2026-03-03 12:50:29 +01:00
Michael Otto
4790001f30 Name und ID angepasst 2026-03-03 12:18:43 +01:00
3 changed files with 13 additions and 15 deletions

View File

@@ -97,9 +97,9 @@ jobs:
CONTENT="${CONTENT//\{\{VERSION\}\}/${{ steps.releaseinfo.outputs.version }}}"
CONTENT="${CONTENT//\{\{AUTHOR\}\}/${{ steps.info.outputs.author }}}"
CONTENT="${CONTENT//\{\{EMAIL\}\}/${{ steps.info.outputs.email }}}"
CONTENT="${CONTENT//\{\{HOMEPAGE\}\}/${{ steps.info.outputs.homepage }}}"
CONTENT="${CONTENT//\{\{TRACKER\}\}/${{ steps.info.outputs.tracker }}}"
CONTENT="${CONTENT//\{\{REPOSITORY\}\}/${{ steps.info.outputs.repository }}}"
CONTENT="${CONTENT//\{\{HOMEPAGE\}\}/${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}}"
CONTENT="${CONTENT//\{\{TRACKER\}\}/${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}}"
CONTENT="${CONTENT//\{\{REPOSITORY\}\}/${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}}"
CONTENT="${CONTENT//\{\{EXPERIMENTAL\}\}/${{ steps.info.outputs.experimental }}}"
CONTENT="${CONTENT//\{\{DEPRECATED\}\}/${{ steps.info.outputs.deprecated }}}"
CONTENT="${CONTENT//\{\{QT6\}\}/${{ steps.info.outputs.supportsQt6 }}}"
@@ -296,7 +296,7 @@ jobs:
DOWNLOAD_URL="https://${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}/releases/download/${{ github.ref_name }}/${ZIP_NAME}"
jq -n \
--arg plugin "${{ steps.info.outputs.name }}" \
--arg name "${{ steps.info.outputs.name }}" \
--arg version "$VERSION" \
--arg channel "$CHANNEL" \
--arg description "${{ steps.info.outputs.description }}" \
@@ -304,16 +304,17 @@ jobs:
--arg email "${{ steps.info.outputs.email }}" \
--arg qgis_min "${{ steps.info.outputs.qgisMinimumVersion }}" \
--arg qgis_max "${{ steps.info.outputs.qgisMaximumVersion }}" \
--arg homepage "${{ steps.info.outputs.homepage }}" \
--arg tracker "${{ steps.info.outputs.tracker }}" \
--arg repository "${{ steps.info.outputs.repository }}" \
--arg homepage "${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}" \
--arg tracker "$${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}" \
--arg repository "$${{ vars.RELEASE_URL }}/${GITHUB_REPOSITORY}" \
--arg experimental "${{ steps.info.outputs.experimental }}" \
--arg deprecated "${{ steps.info.outputs.deprecated }}" \
--arg qt6 "${{ steps.info.outputs.supportsQt6 }}" \
--arg id "${{ steps.info.outputs.zip_folder }}" \
--arg url "$DOWNLOAD_URL" \
--arg changelog "Automatischer Release" \
'{
plugin: $plugin,
name: $name,
version: $version,
channel: $channel,
description: $description,
@@ -327,6 +328,7 @@ jobs:
experimental: $experimental,
deprecated: $deprecated,
qt6: $qt6,
id: $id,
url: $url,
changelog: $changelog
}' > payload.json

View File

@@ -1,11 +1,7 @@
name=LNO Sachsen | Plugin Test Action
description=Test plugin for release pipeline
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
qgisMinimumVersion=3.0
qgisMaximumVersion=3.99
deprecated=False

View File

@@ -6,9 +6,9 @@ description={{DESCRIPTION}}
version={{VERSION}}
author={{AUTHOR}}
email={{EMAIL}}
homepage={{HOMEPAGE}}
tracker={{TRACKER}}
repository={{REPOSITORY}}
homepage=https://{{HOMEPAGE}}
tracker=https://{{TRACKER}}/issues
repository=https://{{REPOSITORY}}
experimental={{EXPERIMENTAL}}
deprecated={{DEPRECATED}}
supportsQt6={{QT6}}