Skip to content
This repository was archived by the owner on Oct 13, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/update-jellyfin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -88,6 +88,7 @@ jobs:
fi

echo "plugin_zip=$plugin" >> $GITHUB_OUTPUT
echo "found plugin: $plugin"

- name: Create/Update Jellyfin Release
if: >-
Expand Down