diff --git a/.github/workflows/update-jellyfin-release.yml b/.github/workflows/update-jellyfin-release.yml index 05ee7c9..79f93f6 100644 --- a/.github/workflows/update-jellyfin-release.yml +++ b/.github/workflows/update-jellyfin-release.yml @@ -64,10 +64,10 @@ jobs: github.event.action != 'deleted' id: loop run: | - files=${{ fromJson(steps.download.outputs.downloaded_files) }} + files=$(echo '${{ steps.download.outputs.downloaded_files }}' | jq -r '.[]') file_number=0 plugin="" - for file in "${files[@]}"; do + for file in $files; do echo "$file" # extract the zip file @@ -88,6 +88,7 @@ jobs: fi echo "plugin_zip=$plugin" >> $GITHUB_OUTPUT + echo "found plugin: $plugin" - name: Create/Update Jellyfin Release if: >-