chore: bump plugin versions to 0.1.3 and add release plan validation to CI pipeline
Release / check-release (push) Successful in 25s
Release / build (push) Skipped
Release / package (deb) (push) Skipped
Release / package (rpm) (push) Skipped
Release / publish (push) Skipped
CI / test (push) Successful in 1m44s
Plugin Releases / build-package-publish (push) Failing after 4m24s

This commit is contained in:
Elias Wendland
2026-07-17 19:42:11 +02:00
parent 46cacdcabc
commit d2072076b3
11 changed files with 26 additions and 18 deletions
+8
View File
@@ -34,6 +34,14 @@ jobs:
run: |
packaging/changed-plugins.sh "$BEFORE" "$AFTER" > .plugin-release-plan.json
jq . .plugin-release-plan.json
jq -e '
(.include | type == "array") and
(.include | all(.[];
(.manifest | type == "string" and length > 0) and
(.engine_version | type == "string" and length > 0) and
(.library | type == "string" and length > 0)
))
' .plugin-release-plan.json > /dev/null
echo "count=$(jq '.["include"] | length' .plugin-release-plan.json)" >> "$GITHUB_OUTPUT"
- uses: Swatinem/rust-cache@v2
if: steps.plugins.outputs.count != '0'