From e751dfcf7ee236044187da78d66efa980ddbf6c7 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 23 May 2024 15:34:29 -0400 Subject: [PATCH] ci: fix check download assets --- .github/workflows/update-jellyfin-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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: >-