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
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:
@@ -32,7 +32,7 @@ jobs:
|
||||
run: |
|
||||
matrix=$(packaging/changed-plugins.sh "$BEFORE" "$AFTER")
|
||||
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
|
||||
echo "count=$(jq '.include | length' <<<"$matrix")" >> "$GITHUB_OUTPUT"
|
||||
echo "count=$(jq '.["include"] | length' <<<"$matrix")" >> "$GITHUB_OUTPUT"
|
||||
|
||||
build-package-publish:
|
||||
needs: detect
|
||||
|
||||
Generated
+9
-9
@@ -330,14 +330,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "convertis-ffmpeg-audio"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "convertis-ffmpeg-frames-to-video"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
"serde",
|
||||
@@ -346,14 +346,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "convertis-ffmpeg-video"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "convertis-ffmpeg-video-to-frames"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
"serde",
|
||||
@@ -362,14 +362,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "convertis-graphicsmagick"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "convertis-html"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"convertis-plugin-api",
|
||||
@@ -378,7 +378,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "convertis-image-ascii"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
"image",
|
||||
@@ -386,14 +386,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "convertis-imagemagick"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "convertis-native-image"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"convertis-plugin-api",
|
||||
"image",
|
||||
|
||||
@@ -80,4 +80,4 @@ while IFS= read -r directory; do
|
||||
entries=$(jq -c --argjson entry "$entry" '. + [$entry]' <<<"$entries")
|
||||
done <<<"$directories"
|
||||
|
||||
jq -cn --argjson include "$entries" '{include: $include}'
|
||||
jq -cn --argjson entries "$entries" '{"include": $entries}'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-ffmpeg-audio"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "FFmpeg audio plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-ffmpeg-frames-to-video"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "FFmpeg frames-to-video plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-ffmpeg-video-to-frames"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "FFmpeg video-to-frames plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-ffmpeg-video"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "FFmpeg video plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-graphicsmagick"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "GraphicsMagick plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-html"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "Self-contained HTML plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-image-ascii"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "Image-to-ASCII plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-imagemagick"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "ImageMagick plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "convertis-native-image"
|
||||
build = "../../plugin-build.rs"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
description = "Native common-image plugin for Convertis"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
Reference in New Issue
Block a user