chore: bump plugin versions to 0.1.1 and fix JSON object key access in CI scripts
Release / check-release (push) Successful in 22s
Release / build (push) Skipped
Release / package (deb) (push) Skipped
Release / package (rpm) (push) Skipped
Release / publish (push) Skipped
Plugin Releases / detect (push) Successful in 1m37s
CI / test (push) Successful in 1m59s
Plugin Releases / build-package-publish (push) Failing after 1m27s

This commit is contained in:
Elias Wendland
2026-07-17 19:09:04 +02:00
parent 2ae66dd134
commit 96ffe372ba
12 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ jobs:
run: | run: |
matrix=$(packaging/changed-plugins.sh "$BEFORE" "$AFTER") matrix=$(packaging/changed-plugins.sh "$BEFORE" "$AFTER")
echo "matrix=$matrix" >> "$GITHUB_OUTPUT" echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
echo "count=$(jq '.include | length' <<<"$matrix")" >> "$GITHUB_OUTPUT" echo "count=$(jq '.["include"] | length' <<<"$matrix")" >> "$GITHUB_OUTPUT"
build-package-publish: build-package-publish:
needs: detect needs: detect
Generated
+9 -9
View File
@@ -330,14 +330,14 @@ dependencies = [
[[package]] [[package]]
name = "convertis-ffmpeg-audio" name = "convertis-ffmpeg-audio"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
] ]
[[package]] [[package]]
name = "convertis-ffmpeg-frames-to-video" name = "convertis-ffmpeg-frames-to-video"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
"serde", "serde",
@@ -346,14 +346,14 @@ dependencies = [
[[package]] [[package]]
name = "convertis-ffmpeg-video" name = "convertis-ffmpeg-video"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
] ]
[[package]] [[package]]
name = "convertis-ffmpeg-video-to-frames" name = "convertis-ffmpeg-video-to-frames"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
"serde", "serde",
@@ -362,14 +362,14 @@ dependencies = [
[[package]] [[package]]
name = "convertis-graphicsmagick" name = "convertis-graphicsmagick"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
] ]
[[package]] [[package]]
name = "convertis-html" name = "convertis-html"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"base64", "base64",
"convertis-plugin-api", "convertis-plugin-api",
@@ -378,7 +378,7 @@ dependencies = [
[[package]] [[package]]
name = "convertis-image-ascii" name = "convertis-image-ascii"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
"image", "image",
@@ -386,14 +386,14 @@ dependencies = [
[[package]] [[package]]
name = "convertis-imagemagick" name = "convertis-imagemagick"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
] ]
[[package]] [[package]]
name = "convertis-native-image" name = "convertis-native-image"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"convertis-plugin-api", "convertis-plugin-api",
"image", "image",
+1 -1
View File
@@ -80,4 +80,4 @@ while IFS= read -r directory; do
entries=$(jq -c --argjson entry "$entry" '. + [$entry]' <<<"$entries") entries=$(jq -c --argjson entry "$entry" '. + [$entry]' <<<"$entries")
done <<<"$directories" done <<<"$directories"
jq -cn --argjson include "$entries" '{include: $include}' jq -cn --argjson entries "$entries" '{"include": $entries}'
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-ffmpeg-audio" name = "convertis-ffmpeg-audio"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "FFmpeg audio plugin for Convertis" description = "FFmpeg audio plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-ffmpeg-frames-to-video" name = "convertis-ffmpeg-frames-to-video"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "FFmpeg frames-to-video plugin for Convertis" description = "FFmpeg frames-to-video plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-ffmpeg-video-to-frames" name = "convertis-ffmpeg-video-to-frames"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "FFmpeg video-to-frames plugin for Convertis" description = "FFmpeg video-to-frames plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-ffmpeg-video" name = "convertis-ffmpeg-video"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "FFmpeg video plugin for Convertis" description = "FFmpeg video plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-graphicsmagick" name = "convertis-graphicsmagick"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "GraphicsMagick plugin for Convertis" description = "GraphicsMagick plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-html" name = "convertis-html"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "Self-contained HTML plugin for Convertis" description = "Self-contained HTML plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-image-ascii" name = "convertis-image-ascii"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "Image-to-ASCII plugin for Convertis" description = "Image-to-ASCII plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-imagemagick" name = "convertis-imagemagick"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "ImageMagick plugin for Convertis" description = "ImageMagick plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "convertis-native-image" name = "convertis-native-image"
build = "../../plugin-build.rs" build = "../../plugin-build.rs"
version = "0.1.0" version = "0.1.1"
description = "Native common-image plugin for Convertis" description = "Native common-image plugin for Convertis"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true