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'
Generated
+9 -9
View File
@@ -330,14 +330,14 @@ dependencies = [
[[package]]
name = "convertis-ffmpeg-audio"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
]
[[package]]
name = "convertis-ffmpeg-frames-to-video"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
"serde",
@@ -346,14 +346,14 @@ dependencies = [
[[package]]
name = "convertis-ffmpeg-video"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
]
[[package]]
name = "convertis-ffmpeg-video-to-frames"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
"serde",
@@ -362,14 +362,14 @@ dependencies = [
[[package]]
name = "convertis-graphicsmagick"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
]
[[package]]
name = "convertis-html"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"base64",
"convertis-plugin-api",
@@ -378,7 +378,7 @@ dependencies = [
[[package]]
name = "convertis-image-ascii"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
"image",
@@ -386,14 +386,14 @@ dependencies = [
[[package]]
name = "convertis-imagemagick"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
]
[[package]]
name = "convertis-native-image"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"convertis-plugin-api",
"image",
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-ffmpeg-audio"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "FFmpeg audio plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-ffmpeg-frames-to-video"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "FFmpeg frames-to-video plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-ffmpeg-video-to-frames"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "FFmpeg video-to-frames plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-ffmpeg-video"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "FFmpeg video plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-graphicsmagick"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "GraphicsMagick plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-html"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "Self-contained HTML plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-image-ascii"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "Image-to-ASCII plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-imagemagick"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "ImageMagick plugin for Convertis"
edition.workspace = true
authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "convertis-native-image"
build = "../../plugin-build.rs"
version = "0.1.2"
version = "0.1.3"
description = "Native common-image plugin for Convertis"
edition.workspace = true
authors.workspace = true