Update Jellyfin plugin release workflow to use MD5 checksums instead of SHA256. Modify manifest.json with new source URL and checksum, and update README to clarify checksum verification process.
Build and Release Jellyfin plugins / release (push) Successful in 23s

This commit is contained in:
2026-08-22 22:25:47 +02:00
parent 90c4423696
commit 1aa7e83044
4 changed files with 4 additions and 30 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ jobs:
exit 1
fi
ARTIFACT_NAME=$(basename "$ARTIFACT")
CHECKSUM=$(sha256sum "$ARTIFACT" | awk '{print $1}')
CHECKSUM=$(md5sum "$ARTIFACT" | awk '{print $1}')
BODY=$(printf 'Jellyfin plugin **%s** %s\n\nBuilt automatically from Jellyfin/%s changes.' "$SLUG" "$VERSION" "$SLUG")
BODY_JSON=$(printf '%s' "$BODY" | jq -Rs .)