Fixed wrongly quoted variable in jq pattern.

This commit is contained in:
Patrick Lehmann
2025-11-13 13:33:20 +01:00
parent b04ceae7bb
commit 546bf3db8a
9 changed files with 17 additions and 20 deletions

View File

@@ -549,7 +549,7 @@ jobs:
)" \
'{"tag": $tag, "version": $version, "git-hash": $hash, "repository-url": $repo, "release-url": $release, "categories": $categories, "latest": $jsonLatest}' \
)" \
'{"version": "$structVersion", "timestamp": $date, "meta": $jsonMeta, "files": {}}'
'{"version": $structVersion, "timestamp": $date, "meta": $jsonMeta, "files": {}}'
)
fi

View File

@@ -15,9 +15,8 @@ jobs:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
with:
package_name: 'myPackage'
python_version: '3.13' # workaround to use Sphinx in Python 3.13 for sphinx_reports not yet supporting lxml 6.0
python_version_list: '3.10 3.11 3.12 3.13 3.14 pypy-3.10 pypy-3.11'
disable_list: 'windows-arm:pypy-3.10 windows-arm:pypy-3.11'
python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
disable_list: 'windows-arm:pypy-3.11'
PlatformTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev

View File

@@ -10,7 +10,7 @@ jobs:
with:
package_namespace: 'myFramework'
package_name: 'Extension'
unittest_python_version: '3.13' # workaround to use Sphinx in Python 3.13 for sphinx_reports not yet supporting lxml 6.0
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
bandit: 'true'
pylint: 'true'
codecov: 'true'

View File

@@ -9,7 +9,7 @@ jobs:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
with:
package_name: 'myPackage'
unittest_python_version: '3.13' # workaround to use Sphinx in Python 3.13 for sphinx_reports not yet supporting lxml 6.0
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
bandit: 'true'
pylint: 'true'
codecov: 'true'