From 0646c7f73106ae8de3b71b09895f19fd3ac523ae Mon Sep 17 00:00:00 2001 From: TDPI Date: Sun, 1 Mar 2026 17:02:47 +0100 Subject: [PATCH] fix: notsupported again --- .gitea/workflows/build-publish.yaml | 7 +++++-- .gitignore | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-publish.yaml b/.gitea/workflows/build-publish.yaml index dbd0e2d..dee0f75 100644 --- a/.gitea/workflows/build-publish.yaml +++ b/.gitea/workflows/build-publish.yaml @@ -43,10 +43,13 @@ jobs: - name: Create plugin ZIP run: | + # Only include plugin DLL and actual dependencies (not Jellyfin framework DLLs) cd publish - zip -r ../smartnotify_${VERSION}.zip . + zip ../smartnotify_${VERSION}.zip \ + Jellyfin.Plugin.SmartNotify.dll \ + LiteDB.dll cd .. - + # Calculate MD5 checksum CHECKSUM=$(md5sum smartnotify_${VERSION}.zip | cut -d' ' -f1) echo "CHECKSUM=$CHECKSUM" >> "$GITHUB_ENV" diff --git a/.gitignore b/.gitignore index c816185..230d71e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.claude \ No newline at end of file +.claude +buildedplugin \ No newline at end of file